gosuki/pkg/browsers/mozilla/merged_places_bookmarks.sql

21 lines
757 B
MySQL
Raw Normal View History

2022-11-24 20:25:05 +00:00
-- name: merged-places-bookmarks
SELECT
2022-11-24 20:25:05 +00:00
moz_bookmarks.id as bkId,
(moz_bookmarks.fk ISNULL and moz_bookmarks.parent not in (4,0)) as isFolder, -- folder = not son of root(0) or tag(4)
moz_bookmarks.parent == 4 as isTag,
moz_places.id IS NOT NULL as isBk,
moz_bookmarks.parent as bkParent,
ifnull(moz_places.id, -1) as plId,
ifnull(moz_places.url, "") as plUrl,
ifnull(moz_places.description, "") as plDescription,
2022-11-24 20:25:05 +00:00
ifnull(moz_bookmarks.title, "") as bkTitle,
2022-11-24 20:25:05 +00:00
moz_bookmarks.lastModified as bkLastModified
-- datetime(moz_bookmarks.lastModified / (1000*1000), 'unixepoch') as bkLastModifiedDateTime
FROM moz_bookmarks
LEFT OUTER JOIN moz_places
ON moz_places.id = moz_bookmarks.fk
2022-11-24 20:25:05 +00:00
ORDER BY plId