摘要: 高级查询 1.连接查询 select * from Info,Nation --形成笛卡尔积 select * from Info,Nation where Info.Nation = Nation.Code select Info.Code,Info.Name,Sex,Nation.Name,Bi 阅读全文
posted @ 2016-08-05 10:36 无毒不羁 阅读(265) 评论(0) 推荐(0)
摘要: identity 自增长 primary key 主键 unique 唯一键 not null 非空 references 外键(引用) 1.删除表 drop table Student 2.修改表 alter table RenYuan add CC int alter table RenYuan 阅读全文
posted @ 2016-08-05 10:34 无毒不羁 阅读(313) 评论(0) 推荐(0)