摘要:
1. 复制表结构及其数据: create table table_name_new as select * from table_name_old 2. 只复制表结构: create table table_name_new as select * from table_name_old where 1=2; 3. 只复制表数据: 如果两个表结构一样: insert into ta... 阅读全文
posted @ 2009-01-13 14:48
KiNg.JiOnG
阅读(1107)
评论(0)
推荐(0)