CREATE TABLE student( sid int primary key > 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 2
时间: 2023-07-17 08:03:12 浏览: 177
MySQL数据库中创建学生表SQL语句
请注意,您在创建表时遗漏了字段定义。您需要在 `sid` 字段后面添加字段类型,如下所示:
```sql
CREATE TABLE student(
sid int primary key
);
```
这将创建一个名为 `student` 的表格,其中包含一个名为 `sid` 的整数类型主键字段。
阅读全文