migrate a portion of a mysql table to SQLite
Posted
by daniel
on Stack Overflow
See other posts from Stack Overflow
or by daniel
Published on 2010-05-13T07:07:13Z
Indexed on
2010/05/13
7:14 UTC
Read the original article
Hit count: 156
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?
© Stack Overflow or respective owner