欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

区分MySQL中create table as 和 create table like的用法

程序员文章站 2022-05-13 16:08:16
create table as: 说明:复制表结构和数据 用法: create table new_table as select * from old_table;...
create table as:

	说明:复制表结构和数据
	用法:
		create table new_table as select * from old_table;
		create table new_table as select * from old_table limit 0;	
		# limit 0表示只复制表结构,不复制数据。
	
create table like:

	说明:复制表结构和索引结构
	用法:create table new_table like old_table
	举例:create table t_log_2018_01_02 like t_log_2018_01_01;