One workaround would be to use a derived table:
select *
from
(
select a + b as aliased_column
from table
) dtwhere dt.aliased_column = something.
No comments:
Post a Comment