Advertisement
Guest User

Untitled

a guest
Mar 1st, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. DELETE FROM pmd_listings c1
  2.  
  3. WHERE EXISTS (
  4. SELECT *
  5. FROM pmd_listings c2
  6. WHERE c2.id <> c1.id
  7. AND c2.friendly_url = c1.friendly_url
  8. AND c2.www = c1.www
  9. AND c2.listing_zip = c1.listing_zip
  10. )
  11.  
  12. AND c1.id <> (
  13. SELECT MIN(c2.id)
  14. FROM pmd_listings c2
  15. WHERE c2.friendly_url = c1.friendly_url
  16. AND c2.www = c1.www
  17. AND c2.listing_zip = c1.listing_zip
  18. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement