2009-10-23 9:12:11 阅读139 评论0 232009/10 Oct23
2009-2-8 14:30:53 阅读30 评论0 82009/02 Feb8
if exists(select name from sysobjects where name='DepStaffs' and xtype='U')
drop table DepStaffs
create table DepStaffs(
DepID int not null,
StaffName varchar(30) not null,
)
go
insert DepStaffs values(101,'AAAaa')
insert DepStaffs values(101,'BBBb')
insert DepStaffs values(101,'CCCccc')
2009-1-11 20:54:07 阅读41 评论1 112009/01 Jan11
2009-1-7 21:34:32 阅读39 评论3 72009/01 Jan7