Created
February 10, 2016 15:35
-
-
Save TyDraniu/4caabdb9ae54cf4da02f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT b.title, p.url, count(*) ile | |
FROM moz_places p | |
JOIN moz_bookmarks b ON p.id = b.fk | |
WHERE b.title is not null | |
GROUP BY p.url | |
HAVING count(1) > 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment