MSSQL 新建表

if exists ( select 1 from sysobjects where name='bas_edu' and type ='U' )
begin
drop table bas_edu ;
end;
go
create table bas_edu( --学历表
eduNo varchar(10) not null , --编号
eduName varchar(20) not null, --名称
eduMemo varchar(30) not null default '' ,--备注
creater varchar(10) not null, --建立人
createDate date , -- 新增日期
constraint bas_edu_pk primary key(eduNo) --eduNo 为主键
)
go[@more@]

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/729024/viewspace-1021276/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/729024/viewspace-1021276/

你可能感兴趣的:(java)