Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

Mysql Selected All Duplicate Rows

select t.*
from table t
where exists (select 1 from table t2 where t2.url = t.url and t2.id <> t.id);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Mysql #Selected #All #Duplicate #Rows
ADD COMMENT
Topic
Name
8+6 =