数据库连接操作

版权声明:本文为博主编写文章,未经博主允许转载,转载请注明出处: https://blog.csdn.net/qq_39742013/article/details/83211699

如果是

select * 

from student,course

那么做简单的笛卡尔连接

如果是select * 

from student,course,student_course

where student.sno=student_course.sno and course.cno=student_course.cno

上述三表不管连接(即=运算)的顺序是怎么样的,都做三表连接

猜你喜欢

转载自blog.csdn.net/qq_39742013/article/details/83211699