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_formhistory.sql

12 lines
452 B
SQL

-- \AppData\Roaming\Mozilla\Firefox\Profiles\
select
moz_formhistory.id as 'Id',
moz_formhistory.fieldname as 'FieldName',
moz_formhistory.value as 'Value',
moz_formhistory.timesUsed as 'TimesUsed',
datetime(moz_formhistory.firstUsed/1000000,'unixepoch','localtime') as 'FirstUsed',
datetime(moz_formhistory.lastUsed/1000000,'unixepoch','localtime') as 'LastUsed',
moz_formhistory.guid as 'Guid'
from moz_formhistory
order by LastUsed desc