下列创建表student的语句不正确的是( )
13 查阅
create table student( 学号char(10),姓名char(2) ,年龄 int(4))
create table student(学号char(10),姓名char(10),年龄int)
create table student(学号char(10) 姓名char(10) 年龄int)
以上都不能正确创建一个表
参考答案: