1. 程式人生 > >mysql在查詢中常見問題匯總

mysql在查詢中常見問題匯總

spa info alt core rom sco 問題 bubuko clas

1.從主從表中查詢外鍵內容(常見問題)

技術分享圖片

從主從表中查詢對應的外鍵,需要指定外鍵的表,即sno=》 student.sno或者score.sno

錯誤:select sno,sname,degree from student,score where student.sno=score.sno;

正確:select student.sno,sname,degree from student,score where student.sno=score.sno;

mysql在查詢中常見問題匯總