Sql 用于创建表、存储过程、触发器、标量函数的代码
摘要:
--建立客户信息表create table CustomInfo( cid nvarchar(20) not null primary key, cpassword nvarchar(30) not null check(len(cpassword)>=6), csum int not null default(0))go insert into CustomInfo(cid,cpasswo... 阅读全文
posted @ 2010-10-20 16:43 风雨者2 阅读(324) 评论(0) 推荐(1) 编辑