Answers for "can i use alias in where clause"

0

can i use alias in where clause

column_alias can be used in an ORDER BY clause, but it cannot be used in a WHERE, GROUP BY, or HAVING clause. Standard SQL disallows references to column aliases in a WHERE clause. This restriction is imposed because when the WHERE clause is evaluated, the column value may not yet have been determined.
Posted by: Guest on October-17-2021

Code answers related to "can i use alias in where clause"

Browse Popular Code Answers by Language