Hey guys, is it possible to extend query results with literals like this?
Select name from users
union
select name from ('JASON');
or
Select age, name from users
union
select age, name from (25,'Betty');
so it returns all the names in the table plus 'JASON', or (25,'Betty').
Thanks!