在MySQL中有两种方法
create table t_name select create table t_name like
第一种会取消掉原来表的有些定义 且引擎是系统默认引擎
手册上是这么讲的 Some conversion of data types might occur For example the AUTO_INCREMENT attribute is not preserved and VARCHAR columns can bee CHAR columns
第二种就完全复制原表
先建立测试表:
mysql>create database dbtestQuery OK row affected ( sec)mysql>use dbtestDatabase changedmysql>create table t_old >( >id serial >content varchar( ) not null >`desc` varchar( ) not null) >engine innodbQuery OK rows affected ( sec)mysql>show create table t_old+ + +| Table | Create Table |+ + +| t_old | CREATE TABLE `t_old` (`id` bigint( ) unsigned NOT NULL auto_increment `content` varchar( ) NOT NULL `desc` varchar( ) NOT NULL UNIQUE KEY `id` (`id`)) ENGINE=InnoDB DEFAULT CHARSET=latin |+ + + row in set ( sec)
第一种方式
mysql>create table t_select select * from t_old where = Query OK rows affected ( sec)Records: Duplicates: Warnings: mysql>show create table t_select+ + +| Table | Create Table + + +| t_select | CREATE TABLE `t_select` (`id` bigint( ) unsigned NOT NULL default `content` varchar( ) NOT NULL `desc` varchar( ) NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=latin |+ + + row in set ( sec)
第二种方式
lishixinzhi/Article/program/MySQL/201311/296111.快速清空表中的数据(20.05.25)
区别:
a.不带where参数的delete语句可以删除mysql表中所有内容,使用truncate table也可以清空mysql表中所有内容。
b.效率上truncate比delete快,但truncate删除后不记录mysql日志,不可以恢复数据。
c.delete的效果有点像将mysql表中所有记录一条一条删除到删完,而truncate相当于保留mysql表的结构,重新创建了这个表,所有的状态都相当于新表。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)