在MySQL查询的WHERE子句中使用列别名会产生错误
#1054-‘IN/All/ANY子查询’中未知列‘已保证的_邮政编码’
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' ))
MMMHUHU
慕娘9325324
相关分类