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