with adoquery1 do
  begin
  sql1:='create table 法律全表(序号 AUTOINCREMENT(1,1),序号2 INTEGER(50),法律大类 text(50) not null,';
  sql1:=sql1+'立法部门 text(50) not null,适用范围 text(50) not null,法律名称 text(50) not null,发文字号 text(50) not null,';
  sql1:=sql1+'法律级别 text(50) not null,颁布日期 datetime,生效时间 datetime,失效时间 datetime,签署人 text(50),状态 text(50),法律内容 MEMO,';
  sql1:=sql1+'批注 MEMO,出台年度 INTEGER(50),导标 BIT)';
adoquery1.close;
adoquery1.sql.clear;
showmessage(sql1);
adoquery1.sql.add(sql1);
adoquery1.execsql;
运行时,出现提示:Create 语法错误,请问哪里错了?