摘要: SQL: 外连接和内连接: 左连接或左外连接:包含左边的表的所有行,如果右边表中的某行没有匹配,该行内容为空(NULL) --outer jion:left join or left outer join select * from dbo.Project left join dbo.Voice o 阅读全文
posted @ 2016-09-30 16:13 Zbu 阅读(3262) 评论(0) 推荐(0) 编辑
摘要: sql语句建表时设置主、外键 create table Project_Voice ( ID int not null, voiceID int not null, projectID int not null, primary key(ID), foreign key(voiceID) refer 阅读全文
posted @ 2016-09-30 15:58 Zbu 阅读(376) 评论(0) 推荐(0) 编辑