On 5/3/06, Gerry Snyder <[EMAIL PROTECTED]> wrote:
cstrader232 wrote: > I guess I should know this, but is there a way to copy a table from one database to another? > > Thanks in advance! > Start SQLite pointing to the file needing the new table.ATTACH otherfile AS f2 CREATE TABLE newtable AS SELECT * FROM f2.oldtable
That's nice! :)

