摘要:
use DataBaseNamegoif not OBJECT_ID('[Employees]') is Null Drop Table [Employees]goCreate Table [Employees](ID int Primary Key Identity(1,1), [Name] Nvarchar(50) Not Null, [Title] Nvarchar(50) Null, [Phone] int Null, [City] Nvarchar(20)) go Insert Into [Employees] select '张三', '采购 阅读全文
posted @ 2013-07-04 17:42
百花宫
阅读(1390)
评论(0)
推荐(0)