Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT Table.*
FROM Table
LEFT JOIN (SELECT Type, MIN(Id) AS Id
FROM Table
GROUP BY Type) Tbl1
ON Table.Type = Tbl1.Type AND
Table.Id = Tbl1.Id
WHERE Tbl1.Id IS NULL
Select * from table where NOT (ID = knownID) order by ...
SELECT Table.*
FROM Table
LEFT JOIN (SELECT Type, MIN(Id) AS Id
FROM Table
GROUP BY Type
HAVING COUNT(*) > 1) Tbl1
ON Table.Type = Tbl1.Type AND
Table.Id = Tbl1.Id
WHERE Tbl1.Id IS NULL