想飞的笨鸟
笨鸟想飞
------------------------
1IF EXISTS (SELECT * from sysobjects 
2   WHERE id = object_id(N'[Northwind].[dbo].[Categories2]'AND
3   OBJECTPROPERTY(id, N'IsUserTable'= 1)
4   DROP Table [Northwind].[dbo].[Categories2]
5GO
6
1CREATE TABLE [Northwind].[dbo].[Categories2]
2(
3   [CategoryID]  [int]  IDENTITY (1,1)  NOT NULL  PRIMARY KEY,
4   [CategoryName]  [nvarchar]  (15)  NOT NULL,
5   [Description]  [ntext],
6   [Picture]  [image]
7)
8GO
9
posted on 2006-09-19 17:42  想飞的笨鸟  阅读(102)  评论(0)    收藏  举报