41. How MySQL Optimizes DISTINCT? DISTINCT is converted to a GROUP BY on all columns and it will be combined with ORDER BY clause. SELECT DISTINCT t1.a FROM t1,t2 where …
Interview Questions and AnswersPHP and MySQLTechnical Interview Questions and Answers