You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Queries/firefox_contentprefs.sql

13 lines
363 B
SQL

select
prefs.id as 'ID',
prefs.groupID as 'gID',
prefs.settingID as 'sID',
groups.name as 'SourceURL',
prefs.value as 'TargetFolder',
datetime(prefs.timestamp,'unixepoch','localtime') as 'TimeStamp',
settings.name as 'Setting'
from prefs
join groups on prefs.groupID = groups.id
join settings on prefs.settingID = settings.id
order by TimeStamp desc