1.在 mysql中,可以使用 CREATE TABLE 语句创建表。其语法格式为:转自:https://www.cnblogs.com/bigbigbigo/p/10917429.html
/*建表的语法*/ create table [if not exist] Table_name( 字段一 数据类型 [字段属性|约束] [索引] [注释] , 字段二 数据类型 [字段属性|约束] [索引] [注释] , ......... )[表类型][表字符集][注释] /*创建一个InnoDB类型,字符集为utf-8,备注为“test Table”的表*/ /*在这里,我惊喜地发现,单引号、双引号可以使用在comment关键字中!!*/ create table test(id int(4))engine=innodb,charset=utf8,comment="test Table";
例1:在students数据中创建一个名为student的表,表结构如下所示:
字段名称 | 数据类型 | 备注 |
stuID | int(5) | 学号,不为空,主键 |
stuName | Varchar(50) | 姓名,不为空 |
stuSex | Char(10) | 性别 |
stuAge | smallint | 年龄 |
use students; create table student ( stuID int(5) not null primary key, stuName varchar(50) not null, stuSex CHAR(10), stuAge smallint )
运行:
标签:Table,int,create,数据类型,数据表,基本操作,MySQL,test,table From: https://www.cnblogs.com/YorkZhangYang/p/16728884.html