mysql中的表是空表吗_MySQL中两种快速创建空表的方式的区别

MySQL中两种快速创建空表的方式的区别以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!

gx378.jpg

在MySQL中有两种方法

create table t_name select    create table t_name like

第一种会取消掉原来表的有些定义 且引擎是系统默认引擎

手册上是这么讲的 Some conversion of data types might occur For example the AUTO_INCREMENT attribute is not preserved and VARCHAR columns can bee CHAR columns

第二种就完全复制原表

先建立测试表:

mysql> create database dbtest;  Query OK row affected ( sec)  mysql> use dbtest;  Database changed  mysql> create table t_old   > (   > id serial    > content varchar( ) not null    > `desc` varchar( ) not null)   > engine innodb;  Query OK rows affected ( sec)  mysql> show create table t_old;  + + +  | Table | Create Table |  + + +  | t_old | CREATE TABLE `t_old` (  `id` bigint( ) unsigned NOT NULL auto_increment   `content` varchar( ) NOT NULL   `desc` varchar( ) NOT NULL   UNIQUE KEY `id` (`id`)  ) ENGINE=InnoDB DEFAULT CHARSET=latin |  + + +   row in set ( sec)

第一种方式

mysql> create table t_select select * from t_old where = ;  Query OK rows affected ( sec)  Records: Duplicates: Warnings:   mysql> show create table t_select;  + + +  | Table | Create Table + + +  | t_select | CREATE TABLE `t_select` (  `id` bigint( ) unsigned NOT NULL default   `content` varchar( ) NOT NULL   `desc` varchar( ) NOT NULL  ) ENGINE=MyISAM DEFAULT CHARSET=latin |  + + +   row in set ( sec)

第二种方式 lishixinzhi/Article/program/MySQL/201311/29611

分页:123

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值