些许有趣的SQL

1.从MySQL中导出数据库

# mysqldump -u root -p 被导出数据库名(例:movie) > 导出文件名(movie.sql)
Enter password:

2.将*.sql文件导入数据库

首先创建一个数据库

MariaDB [(none)]>create database movie;

然后选择该数据库

MariaDB [(none)]> use movie;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [movie]> 

最后开始导入*.sql文件

MariaDB [movie]>source /root/movie.sql(*.sql文件的本地路径)

3.将一张表中的数据导入表结构完全一样的另一张表中

insert into tbl1 select * from tbl2

4.将一张表中的数据导入表结构不一样的另一张表中

insert into tbl1(col1,col2,col3) select col1,col2,col3 from tbl2

Over

你可能感兴趣的:(MySQL)