无法绑定由多个部分组成的标识符.该怎么处理1
发布网友
发布时间:2023-10-23 20:01
我来回答
共1个回答
热心网友
时间:2024-03-23 10:54
where 後面的条件要加表名,即 表名.字段名,如果表名重命名了,那麼就要用重命名的表名.字段名。
比如有student(学生表)有id,name两个字段,sc(成绩表)有id,score两个字段,则
select student.ID,name,score from student,sc where student.id=sc.id
如果两个表重命名了
select a.id,name,score from student a,sc b where a.id=b.id