mysql where derived column

Solutions on MaxInterview for mysql where derived column by the best coders in the world

showing results for - "mysql where derived column"
Maia
14 Jan 2016
1#you can use having on derived columns.
2SELECT a,b,c,(a*b+c) AS d, n FROM table
3HAVING d > n
4ORDER by d