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.

12 lines
181 B

  1. -- Exercises some changes in the database
  2. create table TEST1 (i1 int, i2 int)
  3. go
  4. insert into TEST1 (i1, i2) values (1,2)
  5. go
  6. drop table TEST2
  7. go
  8. delete from TEST3
  9. go