MySQL命令create table:创建数据表

create table命令用来创建数据表。

create table命令格式:create table <表名> (<字段名1> <类型1> [,..<字段名n> <类型n>]);

例如,建立一个名为MyClass的表:

字段名 数字类型 数据宽度 是否为空 是否主键 自动增加 默认值
idint4primary keyauto_increment
namechar20


sexint4

0
degreedouble16



mysql> create table MyClass(
    > id int(4) not null primary key auto_increment,
    > name char(20) not null,
    > sex int(4) not null default ‘0’,
    > degree double(16,2));

    原文作者:u013063153
    原文地址: https://blog.csdn.net/u013063153/article/details/53304261
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞