I have a query
SELECT COUNT(*) AS \"CNT\", imei FROM devices
which executes just fine. I want to further restrict the query wi
I would imagine because the alias is not assigned to the result column until after the WHERE clause has been processed and the data generated. Is Oracle different from other DBMSs in this behaviour?