有关SQL的小问题。
select *from Students natural join SC natural join Courses
where GRADE<70 and CREDIT>=3;
这个的查询结果只含有一个元组。。
select SNAME
from Students natural join SC natural join Courses
where GRADE<70 and CREDIT>=3;
而为什么这个会有几个重复的捏。。
求指导。
2012-09-26 15:53
2012-10-22 17:39
2012-11-06 17:01

2013-07-04 17:05