id
WITH new_table AS (SELECT id FROM t1UNIONSELECT NULL)SELECT COUNT(*), COUNT(DISTINCT id)FROM new_table;