博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
create table like 和create table select 比较
阅读量:4994 次
发布时间:2019-06-12

本文共 2205 字,大约阅读时间需要 7 分钟。

语法:
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
    [(create_definition,...)]
    [table_options] [select_statement]
 
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
    [(] LIKE old_tbl_name [)];
测试过程:
原数据表:
mysql> show create table test_order \G*************************** 1. row ***************************       Table: test_orderCreate Table: CREATE TABLE `test_order` (  `pay_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,  `origin` int(10) DEFAULT NULL,  `team_id` int(11) DEFAULT NULL,  `state` int(11) DEFAULT NULL,  KEY `team_id` (`team_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf81 row in set (0.00 sec)
mysql> create table cc select * from test_order;Query OK, 9900 rows affected (0.11 sec)Records: 9900  Duplicates: 0  Warnings: 0
mysql> create table dd like test_order;                Query OK, 0 rows affected (0.22 sec)
查看数据:
mysql> select * from cc limit 2;+---------------------+--------+---------+-------+| pay_time            | origin | team_id | state |+---------------------+--------+---------+-------+| 2011-06-22 18:04:47 |     10 |     100 |   100 || 2011-06-22 18:04:47 |     10 |     100 |   101 |+---------------------+--------+---------+-------+2 rows in set (0.00 sec)
mysql> select * from dd;Empty set (0.00 sec)
结果:cc表中数据与原表test_order中的一致,dd表中无数据
查看表结构:
mysql> show create table cc \G*************************** 1. row ***************************       Table: ccCreate Table: CREATE TABLE `cc` (  `pay_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',  `origin` int(10) DEFAULT NULL,  `team_id` int(11) DEFAULT NULL,  `state` int(11) DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf81 row in set (0.00 sec)
mysql> show create table dd \G*************************** 1. row ***************************       Table: ddCreate Table: CREATE TABLE `dd` (  `pay_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,  `origin` int(10) DEFAULT NULL,  `team_id` int(11) DEFAULT NULL,  `state` int(11) DEFAULT NULL,  KEY `team_id` (`team_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf81 row in set (0.00 sec)
结果:cc表中,原表中的索引消失了;dd表与原表一致
 
结论:
create table select 会将原表中的数据完整复制一份,但表结构中的索引会丢失。
create table like 只会完整复制原表的建表语句,但不会复制数据

转载于:https://www.cnblogs.com/Alight/p/4469671.html

你可能感兴趣的文章
二分查找法查找数组元素下表
查看>>
第四章 数据类型
查看>>
php-cgi.exe
查看>>
5.7 Windows常用网络命令
查看>>
防抖(Debouncing)和节流(Throttling)
查看>>
SQL Server 查询当前行、上一行、下一行合并查询
查看>>
Python 学习笔记之——用 sklearn 对数据进行预处理
查看>>
0 window DOS窗口常用指令
查看>>
c++11特性与cocos2d-x 3.0之std::bind与std::function
查看>>
ARC078 D.Fennec VS. Snuke(树上博弈)
查看>>
VIM学习笔记一
查看>>
面向对象第四单元总结
查看>>
同源策略,Jsonp实现跨域
查看>>
二叉搜索树的后序遍历序列
查看>>
纯C#的ini格式配置文件读写
查看>>
每日分享
查看>>
【干货】大数据框架整理
查看>>
年轻人,能用钱解决的,绝不要花时间(转)
查看>>
python2.7.X 升级至Python3.6.X
查看>>
VS调试方法
查看>>