单行命令: create table table3( id int, name varchar(20)); 多行命令:多行命令可以敲回车 在出现后=的箭头后面继续输入: -> create table table3( -> id int, -> name varchar(20)); 格式: create table + 表名称+ (字段名 类型,字段名 类型,。。。。。)