Created
December 21, 2017 15:09
-
-
Save wadouk/d042f5cd6d81ca48be699b814beb9e5b to your computer and use it in GitHub Desktop.
Retrouver le dossier parent d'un bookmark avec keyword
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
# @see https://web.archive.org/web/20170407025318/https://people-mozilla.org/~dietrich/places-erd.png | |
select * from moz_bookmarks | |
where id in ( | |
select r.parent from moz_keywords k, moz_places p, moz_bookmarks b, moz_bookmarks r | |
where k.place_id = p.id | |
and b.fk = p.id | |
and r.id = b.parent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment