关于MySQL select into
来源:phperz.com 作者:phper 发布时间:2012-05-29
Mysql不支持类似SQL SERVER的select into语句直接备份表结构和数据,但是可以用create table table_name (select * from table_name)语句实现同样的效果。 例: Create table new_table_name (Select * from old_table_name); 另外,mysql也有select into相关的语句但
Mysql不支持类似SQL SERVER的select into语句直接备份表结构和数据,但是可以用create table table_name (select * from table_name)语句实现同样的效果。
例:
Create table new_table_name (Select * from old_table_name);
另外,mysql也有select into相关的语句但不是用来复制copy表的,而是把sql导到文件里去。
select * into outfile ‘/home/mysql/data.txt’ from table;
延伸阅读:insert 返回自增列MySQL Replace INTO的使用几个insert插入技巧