Use a string literal followed by a column alias 'Test' AS SpecialColumn. This will result in the same value for all returned rows, useful for differentiating between components UNIONor filling in inappropriate column numbers between components UNIONwhen necessary.
SELECT
ID,
Name,
'Test' AS SpecialColumn
FROM table
WHERE ID = 'guid';
The output (ignoring your where clause) would be something like this:
ID Name SpecialColumn
--------------------------
1 Venkman Test
2 Egon Test
1 Winston Test
3 Ray Test