摘要:
1、说明:复制表(只复制结构,源表名:a 新表名:b) (Access可用) 法一:select * into b from a where 1<>1 法二:select top 0 * into b from a 2、说明:拷贝表(拷贝数据,源表名:a 目标表名:b) (Access可用)inse 阅读全文
摘要:
select * from actor into outfile '/data/actor.text' fields terminated by "," enclosed by '"'; 第一列是数值型,两边不加引号,则改为: select * from actor into outfile '/d 阅读全文