You could try the SQLite ATTACH DATABASE command to attach another (empty) database and then use basic SQL to move the data. Something like:
Qt Code:
  1. ATTACH DATABASE filename AS newdb;
  2. CREATE TABLE newdb.tablename AS SELECT * FROM tablename WHERE timeframe conditions;
To copy to clipboard, switch view to plain text mode 
You may need the new table to have a different name.