I have a simple query: SELECT u_name AS user_name FROM users WHERE user_name = "john";
I get "Unknown Column 'user_name' in where clause". Can I not refer to 'user_name' in other parts of the statement even after select 'u_name as user_name'?
|
|
I have a simple query: SELECT u_name AS user_name FROM users WHERE user_name = "john"; I get "Unknown Column 'user_name' in where clause". Can I not refer to 'user_name' in other parts of the statement even after select 'u_name as user_name'? |
||
|
|
|
|
No you cannot. user_name is doesn't exist until return time. |
||
|
|
|
|
No you need to select it with correct name. If you gave the table you select from an alias you can use that though. |
||
|
|
|
|
corrected:
|
||
|
|
|
|
SQL is evaluated backwards, from right to left. So the where clause is parsed and evaluate prior to the select clause. Because of this the aliasing of u_name to user_name as not yet occurred. |
||
|
|
|
|
Either:
or:
The latter ought to be the same as the former if the RDBMS supports predicate pushing into the in-line view. |
||
|
|
|
|
Think of it like this, your where clause evaluates first, to determine which rows (or joined rows) need to be returned. Once the where clause is executed, the select clause runs for it. To put it a better way, imagine this:
You can't reference the first half without the second. Where always gets evaluated first, then the select clause. |
||
|
|
|
|
While you can alias your tables within your query (i.e., "SELECT u.username FROM users u;"), you have to use the actual names of the columns you're referencing. AS only impacts how the fields are returned. |
||
|
|
|
|
Not as far as I know in MS-SQL 2000/5. I've fallen foul of this in the past. |
||
|
|
|
|
See the following MySQL manual page: http://dev.mysql.com/doc/refman/5.0/en/select.html
|
||
|
|
|
|
SELECT user_name FROM ( SELECT name AS user_name FROM users ) AS test WHERE user_name = "john" |
||
|
|