我想在php页面的查询中使用内部连接和顺序。
我的问题:

select
    *
from
    table1
inner join
    table1category
    on table1.table1category_id = table1category.id
order by updateDate desc;

“updateDate”用于表1=>错误:order子句中的列“updateDate”不明确

最佳答案

当两个表中有同一列时,必须用该列指定表名

SELECT
  *
FROM table1
INNER JOIN table1category
  ON table1.table1category_id = table1category.id
ORDER BY table1.updateDate DESC;

关于mysql - 如何在SQL中使用“内部联接”和“排序依据”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51743179/

10-11 12:06