 
      
      How to search and filter history in sqlite3?
How to search and filter history on specific values like url, title, date/time visited in sqlite3?
Thankyou ab2qik.
How to search and filter history on specific values like url, title, date/time visited in sqlite3?
Thankyou
ab2qik.
        
        
        
      All Replies (1)
You can use this kind of select:
SELECT datetime(h.visit_date/1000000,'unixepoch'), p.url, p.title FROM moz_places p, moz_historyvisits h WHERE p.id = h.place_id
