mysql does not support multiple columns for select distinct(), so this works with a table I have that has width and height columns:
SELECT width,height
FROM orders
GROUP BY CONCAT(width, height)
mysql does not support multiple columns for select distinct(), so this works with a table I have that has width and height columns:
SELECT width,height
FROM orders
GROUP BY CONCAT(width, height)