Skip to content
Advertisement

Tag: sqlite

Update referencing on subquery (sqlite)

I have a table with md5 sums for files and use the following query to find the files which exist in one hashing-run and not in the other (oldt vs newt): SELECT * FROM md5_sums as oldt WHERE NOT …

SQL: View Representing Missing Ranges

Given a table of rows each representing a numerical range. CREATE TABLE ranges ( start INTEGER, end INTEGER ) How could I create a view that represents the “holes” in the ranges? (Ignoring …

Advertisement