进入数据库:use +数据库名
不能直接create table 表名;这样会报错;正确方式:create table 表名(字段名1 字段类型1 [约束条件1],字段名2 字段类型2[约束条件2],.....);
字段类型:varchar,必须指定长度