Advertisement
imehesz

SQLite export to CSV

Jul 26th, 2013
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. $ sqlite3 yourdb.sqlite
  2. sqlite> .mode csv
  3. sqlite> .output output_file_name.csv
  4. sqlite> SELECT * FROM your_table
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement