Heim >Datenbank >MySQL-Tutorial >mysql 创建表 creat table实例

mysql 创建表 creat table实例

WBOY
WBOYOriginal
2016-06-01 09:58:181537Durchsuche

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

<code>CREATE TABLE manong(
    id int not null,
    category char(20)
);</code>

 

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

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

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

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn