Code:
SELECT t1.col AS a, t2.col AS b
FROM daTable AS t1
CROSS
JOIN daTable AS t2
WHERE t1.col < t2.col
of course, this only works if the col values are unique, which they would have to be because the table has only one column, so this column has to be the primary key, and therefore unique
otherwise it's not a table, it's a
bag
