if exists(select * from sysobjects where name='test' and type='U')
drop table test
gocreate table test(
f_bh varchar(12) not null,
f_mc varchar(1000) null,
constraint pk_test primary key(f_bh)
)
goinsert into test(f_bh,f_mc) values('01','(rq char(8),djbh CHAR(20),ywlbno CHAR(8) null,ckmid char(36),bmmid char(36) null,ywymid char(36) null,ksmid char(36),gzf char(1),usermid char(36),ywbs char(2),kpf char(1),hwbh char(30),hwname char(40),hwgg char(30) null,hwdw char(10) null,sl decimal(16,8),dj decimal(16,8),je decimal(16,8))')
goselect * from test