标签:sql creat mysq tab ted rds duplicate table 结构
创建和表departments结构和数据一样的表departments_t
mysql> create table departments_t like departments;
Query OK, 0 rows affected (1.61 sec)
mysql> insert into departments_t select * from departments;
Query OK, 9 rows affected (0.53 sec)
Records: 9 Duplicates: 0 Warnings: 0
标签:sql creat mysq tab ted rds duplicate table 结构
原文地址:http://www.cnblogs.com/paul8339/p/6962965.html