867 B
867 B
Waiting for first pass:
table authors as "Authors", publish_date as "Date Published", last_import as "Date Imported"
from #ToRead
sort publish_date desc
where file.name != "Literature Note"
Waiting for second pass:
table authors as "Authors", publish_date as "Date Published", last_import as "Date Read"
from #InFirstPass
sort publish_date desc
where file.name != "Literature Note"
Waiting for third pass:
table authors as "Authors", publish_date as "Date Published", last_import as "Date Read"
from #InSecondPass
sort publish_date desc
where file.name != "Literature Note"
Recently read:
table authors as "Authors", publish_date as "Date Published", last_import as "Date Read"
from "Literature Notes" and -#ToRead
sort publish_date desc
where last_import >= date(today) - dur(7day)