gpt4 book ai didi

MySQL 错误 1054 : Unknown Column 'hotels.postal_code' in 'on clause'

转载 作者:行者123 更新时间:2023-11-29 05:24:41 25 4
gpt4 key购买 nike

我不太清楚为什么,但我的代码似乎无法工作。我得到错误 1052 或 1054。这是我的代码。请帮忙。

SELECT

hotels.postal_code AS ' Hotel Postal Code',
name AS 'Hotel Name',
latitude AS 'Latitude',
longitude AS 'Longitude',
address AS 'Hotel Address',
hyperlink AS 'Hotel Hyperlink',
hotels.district AS 'Hotel District',
'hotel' AS type

FROM
hotels

join
hotel_sales ON hotels.postal_code = hotel_sales.sales_id
join
postal_code_location ON hotels.district = postal_code_location.district

UNION SELECT

malls.postal_code AS ' Mall Postal Code',
name AS 'Mall Name',
latitude AS 'Latitude',
longitude AS 'Longitude',
address AS 'Mall Address',
hyperlink AS 'Mall Hyperlink',
malls.district AS 'Mall District',
'mall' AS type
FROM
malls

join
hotel_sales ON hotels.postal_code = hotel_sales.sales_id
join
postal_code_location ON hotels.district = postal_code_location.district

最佳答案

替换

FROM
malls

join
hotel_sales ON hotels.postal_code = hotel_sales.sales_id

作为

FROM
malls

join
hotel_sales ON malls.postal_code = hotel_sales.sales_id

加入 MALLSHOTEL_SALES 右列...

所以最终的查询将是..

SELECT

hotels.postal_code AS ' Hotel Postal Code',
name AS 'Hotel Name',
latitude AS 'Latitude',
longitude AS 'Longitude',
address AS 'Hotel Address',
hyperlink AS 'Hotel Hyperlink',
hotels.district AS 'Hotel District',
'hotel' AS type

FROM
hotels

join
hotel_sales ON hotels.postal_code = hotel_sales.sales_id
join
postal_code_location ON hotels.district = postal_code_location.district

UNION SELECT

malls.postal_code AS ' Mall Postal Code',
name AS 'Mall Name',
latitude AS 'Latitude',
longitude AS 'Longitude',
address AS 'Mall Address',
hyperlink AS 'Mall Hyperlink',
malls.district AS 'Mall District',
'mall' AS type
FROM
malls

join
hotel_sales ON malls.postal_code = hotel_sales.sales_id
join
postal_code_location ON hotels.district = postal_code_location.district

关于MySQL 错误 1054 : Unknown Column 'hotels.postal_code' in 'on clause' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21681482/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com