vote up 4 vote down star

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'?

flag

10 Answers

vote up 1 vote down

SELECT user_name FROM ( SELECT name AS user_name FROM users ) AS test WHERE user_name = "john"

link|flag
vote up 1 vote down

See the following MySQL manual page: http://dev.mysql.com/doc/refman/5.0/en/select.html

"A select_expr can be given an alias using AS alias_name. The alias is used as the expression's column name and can be used in GROUP BY, ORDER BY, or HAVING clauses."

link|flag
vote up 0 vote down

Not as far as I know in MS-SQL 2000/5. I've fallen foul of this in the past.

link|flag
vote up 0 vote down

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.

link|flag
vote up 4 vote down
select u_name as user_name from users where u_name = "john";

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:

select distinct(u_name) as user_name from users where u_name = "john";

You can't reference the first half without the second. Where always gets evaluated first, then the select clause.

link|flag
vote up 2 vote down

Either:

SELECT u_name AS user_name
FROM   users
WHERE  u_name = "john";

or:

SELECT user_name
from
(
SELECT u_name AS user_name
FROM   users
)
WHERE  u_name = "john";

The latter ought to be the same as the former if the RDBMS supports predicate pushing into the in-line view.

link|flag
vote up 7 vote down

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.

link|flag
vote up 2 vote down

corrected:

SELECT u_name AS user_name FROM users WHERE u_name = 'john';
link|flag
vote up 4 vote down

No you need to select it with correct name. If you gave the table you select from an alias you can use that though.

link|flag
vote up 2 vote down

No you cannot. user_name is doesn't exist until return time.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.