mysql建表语句设置主键
时间: 2023-11-11 18:59:29 浏览: 159
MySQL里Create Index 能否创建主键 Primary Key
在 MySQL 中,可以使用以下语句来创建一个带有主键的表:
```
CREATE TABLE table_name (
column1 datatype PRIMARY KEY,
column2 datatype,
column3 datatype,
...
);
```
其中,`column1` 是主键列,`PRIMARY KEY` 关键字用于指定该列为主键。
如果需要使用多个列作为主键,可以使用以下语句:
```
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
...
PRIMARY KEY (column1, column2)
);
```
其中,`PRIMARY KEY` 关键字后面跟着括号,括号中包含需要作为主键的列名。
阅读全文