Çalıştırdığım sorgu aşağıdaki gibidir, ancak bu hatayı alıyorum:
# 1054 - 'IN / ALL / ANY alt sorgusundaki' guaranteed_postcode 'bilinmeyen sütunu
SELECT `users`.`first_name`, `users`.`last_name`, `users`.`email`,
SUBSTRING(`locations`.`raw`,-6,4) AS `guaranteed_postcode`
FROM `users` LEFT OUTER JOIN `locations`
ON `users`.`id` = `locations`.`user_id`
WHERE `guaranteed_postcode` NOT IN #this is where the fake col is being used
(
SELECT `postcode` FROM `postcodes` WHERE `region` IN
(
'australia'
)
)
Benim sorum: Neden aynı DB sorgusunun nerede yan tümcesinde sahte bir sütun kullanamıyorum?