Search code examples
mysqlduplicatesshowrowsexcept

how to show all records from a specific mySQL row - except duplicates?


Is there any easy way to show all records from a specific mySQL row - except the duplicated ones?


Solution

  • select distinct myrow from mytable;