8
MySQL 쿼리의 WHERE 절에서 열 별칭을 사용하면 오류가 발생합니다
내가 실행중인 쿼리는 다음과 같지만이 오류가 발생합니다. # 1054- 'IN / ALL / ANY 하위 쿼리'의 알 수없는 열 'guaranteed_postcode' 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 …
201
mysql
sql
mysql-error-1054