摘要: --===============================================create table Employees( EmpId int identity(1,1), EmpName varchar(50), EmpGender char(2), EmpAge int, EmpEmail varchar(100), EmpAddress varchar(500))gocreate table Department( DepId int identity(1,1), DepName varchar(50))drop ta... 阅读全文
posted @ 2013-12-17 21:19 wbkboy 阅读(363) 评论(0) 推荐(0)