www.quicfoto.com
2009-10-23 9:12:11 阅读(23) 评论(0)
2009-2-8 14:30:53 阅读(8) 评论(0)
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 阅读(11) 评论(1)
2009-1-7 21:34:32 阅读(9) 评论(3)