Home >Database >Mysql Tutorial >mysql的快速创建空表(2)_MySQL

mysql的快速创建空表(2)_MySQL

WBOY
WBOYOriginal
2016-06-01 13:50:191209browse

bitsCN.com

  | 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 row in set (0.00 sec)

mysql>

bitsCN.com
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn