Thanks, theducks, that is what I need (as well as sqllite browser, to actually determine the Calibre database column names).
It appears that the column Date is actually timestamp in the database, and last_modified gets updated for any modification (of course!), so my query in Multi Column Search is something like:
SELECT id FROM books WHERE last_modified > datetime(timestamp, '+2 days')
What I wanted was to find books I had edited over the last month or so, thinking (stupidly) that last_modified would indicate that, but of course it indicates any change, to any column, and unfortunately there doesn't appear to be a column that indicates what the change was.
Thanks all for the help.
|