If I have a table containing Field1 and Field2, can I generate a new field in the select statement? For example, a regular query:
SELECT Field1, Field2 FROM Table
And I also want to create Field3 and return it to the result set ... something in accordance with this would be ideal:
SELECT Field1, Field2, Field3 = 'Value' FROM Table
Is this even possible?
source
share