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;
Posted laoniaofly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql在查询中常见问题汇总相关的知识,希望对你有一定的参考价值。
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在查询中常见问题汇总的主要内容,如果未能解决你的问题,请参考以下文章