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, '' as newfield from table1
This Will Do you Job