mysql|多表鏈接查詢

use test; select * from students; select * from courses; select * from sc; # 多表鏈接查詢 -- 查詢選修了【數據庫原理】的計算機系的學生學號和姓名。 select distinct students.Sno, Sname from students, courses, sc where Cname='數據庫原理' and
相關文章
相關標籤/搜索