I have a mysql table set up like so:
user_id | document
44 [blob]
44 [blob]
44 [blob]
46 [blob]
I'd like to export all of user_id
44's data to an SQLite3 file.
Best way to go about this without writing a script that reads the data and dumps it into a SQLite file?