各位学霸 有时间帮我看看这个代码

![img](https://img-mid.csdnimg.cn/release/static/image/mid/ask/391972806056114.jpg "#left"

create table 交易记录表(ID int auto_ increment primary key comment
'顺序号'
,TDate date not null default now() comment
'交易时间'
,AccNO char(20) not null foreign key comment '账号'
,Expense double comment'支出'
,Incomedouble comment '收入'
,OppAcccNO char(20) foreign key comment
'对方账号'
,Place nvchar(30) comment '交易地点'
,Abstract nvchar(30) comment '摘要');