Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
181 B

-- Exercises some changes in the database
create table TEST1 (i1 int, i2 int)
go
insert into TEST1 (i1, i2) values (1,2)
go
drop table TEST2
go
delete from TEST3
go