赞
踩
1、常规创建方法:create table if not exists 表名(列名1,类型,列名2,类型...);
2、复制表格:create table 新表 like 旧表;
3、用A表的一部分创建B表:
- create table if not exists B
- (
- 列名1 varchar(45) not null,
- 列名2 varchar(45) not null
- ) -- 创建表
- insert into B
- select A表中列1,A表中列2
- from A; -- 插入列
4、从另一张表的查询结果创建表:
create table tb_name as select * from tb_name_old where options
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。