Created
July 7, 2025 18:03
-
-
Save CarissaDurko/ee67226a9c64fb79c89dc91045f042a5 to your computer and use it in GitHub Desktop.
SQL Sort Browser History by Local Time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT url,title,datetime(last_visit_time/ 1000000 + (strftime('%s','1601-01-01')),'unipoch','localtime') | |
| FROM urls | |
| ORDER BY last_visit_time DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment