I need to write a query that selects a minimum value and it\'s second most minimum value from a list of integers.
Grabbing the smallest value is obvious:
<
SELECT MIN(value) FROM TABLE WHERE Value > (SELECT MIN(value) FROM TABLE)