区分MySQL中create table as 和 create table like的用法
程序员文章站
2024-01-20 10:54:58
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;
上一篇: C++多线程编程
推荐阅读
-
MySQL中create table语句的基本语法是
-
MySQL中create table语句的基本语法是
-
MySQL的create table as 与create table like区别
-
MySQL 的create table as 与like 的使用
-
create table like 和create table as select的区别对比,mysql和oracle复制表
-
MySQL的create table as 与 like区别
-
Hive中Create table... as 和 Create table ... like 的区别和使用注意
-
MySQL中create table as VS create table like
-
MySQL中create table语句的基本语法是_php基础
-
区分MySQL中create table as 和 create table like的用法