我正试图连接两个表,但出现了一个错误
'非唯一表/别名:'ct'
查询是
select em.* ,ct.Cities_NAME
from Customer em,
Cities ct inner join Cities ct on ct.Cities_ID = em.Customer_CITY
where Customer_GROUP is NULL and Customer_ENABLED is not FALSE and Customer_TYPE != 'User'
哪里出错了?为什么?
2条答案
按热度按时间krugob8w1#
z6psavjg2#
不要在句子中使用逗号
FROM
条款。始终使用适当的、明确的、标准的JOIN
语法:出于某种原因,您列出了
ct
在查询中两次。您还应该限定查询中的所有列引用。