mySQl数据库创建数据表正确的有哪些?
Acreate table test1 (
field_name int comment ‘字段的注释‘
)comment=‘表的注释‘
Bcreate table test(
id int comment ‘用户id‘ )
Ccreate table test1 ( field_name int )
Dcreate table test1 ( field_name int,name varchar(8))