Pokud znáte počet sloupců, ale neznáte jejich názvy a typy, můžete použít následující trik:
select NULL as C1, NULL as C2 where 1 = 0
-- Returns empty table with predefined column names
union all
select * from Test
-- There should be exactly 2 columns, but names and data type doesn't matter
V důsledku toho budete mít tabulku se 2 sloupci [C1] a [C2]. Tato metoda není příliš užitečná, pokud máte v tabulce 100 sloupců, ale funguje dobře pro tabulky s malým předdefinovaným počtem sloupců.