当前位置:Gxlcms > mysql > mysql创建表creattable实例

mysql创建表creattable实例

时间:2021-07-01 10:21:17 帮助过:10人阅读

实例一:创建最基本的表(下面创建了一个manong表)

CREATE TABLE manong(
    id int not null,
    category char(20)
);

实例二:创建带主键(primary key)的表

CREATE TABLE manong(
    id int not null primary key,
    category char(20)
);

上面实例创建了一个mangnong表,分别有id和category两个字段,其中id为主键。

人气教程排行