mysql快速建表的方法

数据库 MySQL
建表是mysql数据库的基础知识,下文就为您介绍了两种常用的快速建表的方法,如果您对此方面感兴趣的话,不妨一看。

mysql快速建表的语句写法并不复杂,下面就为您详细介绍两种最常用的mysql快速建表的语句:

1:create table t_select select * from t_old where 1 = 0;  
2:create table t_select1 like t_old;  
  • 1.
  • 2.

但是***种mysql快速建表的语句有缺陷,他能取消原来表的有些定义。(手册上说Some conversion of data types might occur. For example, the AUTO_INCREMENT attribute is not preserved, and VARCHAR columns can become CHAR columns. )
可以看看下面的例子

create table t_old (id serial, content varchar(8000) not null,`desc` varchar(100) not null) engine innodb;  
show CREATE table t_old;  
| Table | Create Table                                                                        
 
 | t_old | CREATE TABLE `t_old` (  
`id` bigint(20) unsigned NOT NULL auto_increment,  
`content` varchar(8000) NOT NULL,  
`desc` varchar(100) NOT NULL,  
UNIQUE KEY `id` (`id`)  
ENGINE=InnoDB DEFAULT CHARSET=utf8 
 
create table t_select select * from t_old where 1 = 0;   
CREATE TABLE `t_select` (  
`id` bigint(20) unsigned NOT NULL default '0',  
`content` varchar(8000) NOT NULL,  
`desc` varchar(100) NOT NULL  
ENGINE=MyISAM DEFAULT CHARSET=utf8   
 
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.

这样 自增字段跟表引擎都变了
如果想要保持一样的引擎,就加上:engine innodb
如:

create table t_select engine innodb select * from t_old where 1 = 0; create table t_like like t_old;  
show CREATE table t_like;  
Table                                                    | t_like | CREATE TABLE `t_like` (  
`id` bigint(20) unsigned NOT NULL auto_increment,  
`content` varchar(8000) NOT NULL,  
`desc` varchar(100) NOT NULL,  
UNIQUE KEY `id` (`id`)  
ENGINE=InnoDB DEFAULT CHARSET=utf8   
 
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.

这样引擎跟自增字段都没有变

看下面一个一个例子,就知道有什么变化了

CREATE TABLE `t4_innodb` (                 
`id` int(11) NOT NULL AUTO_INCREMENT,    
`a1` int(11) NOT NULL,                   
`a2` int(11) DEFAULT NULL,               
`remark` varchar(200) NOT NULL,          
PRIMARY KEY (`id`),                      
KEY `a1_2_idx` (`a1`)                    
ENGINE=InnoDB DEFAULT CHARSET=utf8     
 
create table t6_innodb select * from t4_innodb where 1=2;  
CREATE TABLE `t6_innodb` (              
`id` int(11) NOT NULL DEFAULT '0',    
`a1` int(11) NOT NULL,                
`a2` int(11) DEFAULT NULL,            
`remark` varchar(200) NOT NULL        
ENGINE=InnoDB DEFAULT CHARSET=utf8   
 
create table t8_innodb like t4_innodb;  
 
CREATE TABLE `t8_innodb` (                 
`id` int(11) NOT NULL AUTO_INCREMENT,    
`a1` int(11) NOT NULL,                   
`a2` int(11) DEFAULT NULL,               
`remark` varchar(200) NOT NULL,          
PRIMARY KEY (`id`),                      
KEY `a1_2_idx` (`a1`)                    
ENGINE=InnoDB DEFAULT CHARSET=utf8    
 
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.

 

 

 

【编辑推荐】

MySQL大表备份的简单方法

MySQL中文建表问题解析

MySQL添加字段和修改字段的方法

MySQL授权表使用示例

MySQL内存表的弊端

责任编辑:段燃 来源: 互联网
相关推荐

2010-10-15 10:14:09

Mysql建表

2010-11-23 10:11:23

mysql建表乱码

2010-09-16 09:49:38

sql server建

2010-11-23 15:50:44

MySQL中文建表

2011-02-25 14:52:10

Proftpd建表

2010-10-11 17:23:47

mysql建主从服务器

2010-11-23 09:57:36

MYSQL表信息

2010-10-15 10:37:27

MySQL创建关联表

2010-10-15 10:58:13

Mysql清空表

2021-03-02 11:07:54

MySQL建表引导

2010-11-25 16:29:26

MySQL慢日志查询

2010-11-23 15:33:17

MySQL分表处理

2010-10-15 11:05:31

MYSQL查询结果

2010-11-23 09:13:47

mysql修改表结构

2010-10-14 14:43:45

MySQL联表查询

2010-09-30 11:44:40

DB2表快速清空

2010-11-24 13:11:06

MySQL遍历数据表

2010-11-23 16:21:07

MySQL大表备份

2010-06-10 14:14:18

个MySQL表索引

2010-11-24 13:58:11

mysql表
点赞
收藏

51CTO技术栈公众号