Select a dummy column with a dummy value in SQL? June 5, 2023 by Tarik Try this: select col1, col2, 'ABC' as col3 from Table1 where col1 = 0;