Answers for "mysql group by derived column"

SQL
0

mysql group by derived column

/* you can group by using the alias name*/
SELECT width*height as area FROM images GROUP BY area;
Posted by: Guest on August-12-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language