I have a select statement like this
select field1, field2 from table1
What I want is to have a newfield with only value \"example\".
select field1, field2, 'example' as TempField from table1
This should work across different SQL implementations.