导航

2009年7月14日

摘要: 1. 创建表 create table Student(StudentOID varchar(50), Age integer) //表是可以没有主键的2. 创建表时指定主键 create table MyCustomer (CustomerID int Identity(100,1) Primary Key,CompanyName nvarchar(50)) //设置主键后,在控制台上"Keys... 阅读全文

posted @ 2009-07-14 17:47 鸡尾虾的壳 阅读(1191) 评论(0) 推荐(0) 编辑