Home > Database > Mysql Tutorial > Ubuntu 下MySQL导入数据库.sql文件 命令

Ubuntu 下MySQL导入数据库.sql文件 命令

WBOY
Release: 2016-06-07 16:57:33
Original
2061 people have browsed it

Ubuntu 下首先建好数据库,如tempmysql -h localhost -u root -p templt;/home/pt/test.sql会提示你输入密码,输入就OK。2. 导入

Ubuntu 下首先建好数据库,,如temp

mysql -h localhost -u root -p temp/pt/test.sql

会提示你输入密码,输入就OK。

2. 导入数据:

语法是 mysqldump –opt 库名

例子是 mysqldump -hlocalhost -uroot -p123456 zf 或者

mysqlimport -hlocalhost -u root -p123456 < c:\data.sql

3. 将文本数据导入数据库:

use 库名;

load data local infile “文件名” into table 表名;

第六招 创建一个数据库表

CREATE TABLE MYTABLE (name VARCHAR(20), sex CHAR(1));

第七招 往表中加入记录

insert into 表名 values (”1″,”2″);

第八招 用文本方式将数据装入数据库表中

LOAD DATA LOCAL INFILE “c:/data.sql” INTO TABLE 表名;

第九招 导入.sql文件命令(例如c:/data.sql)

use database;

source c:/data.sql

第十招 更新表中数据

update MYTABLE set sex=”f” where name=’hyq’;

第十一招 修复表

repair 表名

第十二招 查看表的大小

show 表名 status

第十三招 修改密码

mysqladmin -u用户名 -p旧密码 password “新密码”

第十四招 修改表结构

ALTER TABLE t1 MODIFY b BIGINT NOT NULL;

第十四招 退出MYSQL命令

exit or quit(回车)

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template