Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Mysql 数据库中有 table1 和 table2。
每个表都有一个同名的字段,比如说“id”。
我需要一个查询,我可以在其中获取两个表的“id”字段值。我试过这个:
SELECT table1.id, table2.id FROM...
但我收到一条错误消息:
“字段列表”中的未知列“table1.id”
你需要ALIAS在列上添加
ALIAS
SELECT table1.id AS table1_ID, -- keyword AS is optional table2.id AS table2_ID FROM...
并在 PHP 中调用它们的别名(例如) 。$row["table1_ID"]
$row["table1_ID"]
更多事情的Unknown column 'table1.id' in 'field list'结果来自服务器在您的连接语句中无法找到的列。
Unknown column 'table1.id' in 'field list'
后续问题,您可以发布整个查询吗?