例如student的表有col和col2两字段,类型分别为int和 varchar(20)use datacreate table student(col1 int,col2 varchar(20))
use data;create table student (id integer,name char(20))