MySQL创建相同表和数据命令
Posted hch的随笔 成功的秘诀在于恒心—迪斯雷利
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL创建相同表和数据命令相关的知识,希望对你有一定的参考价值。
创建和表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
以上是关于MySQL创建相同表和数据命令的主要内容,如果未能解决你的问题,请参考以下文章