mirror of
https://github.com/kacos2000/Queries
synced 2024-11-13 19:10:42 +00:00
12 lines
452 B
MySQL
12 lines
452 B
MySQL
|
-- \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
|