PHP程序员站--PHP编程开发平台
 当前位置:主页 >> 数据库 >> MySQL >> 

关于MySQL select into

关于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插入技巧
Tags: mysql   select   into  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号