vote up 2 vote down star

If I've got a table containing Field1 and Field2 can I generate a new field in the select statement? For example, a normal query would be:

SELECT Field1, Field2 FROM Table

And I want to also create Field3 and have that returned in the resultset... something along the lines of this would be ideal:

SELECT Field1, Field2, Field3 = 'Value' FROM Table

Is this possible at all?

flag

4 Answers

vote up 10 vote down check
SELECT Field1, Field2, 'Value' Field3 FROM Table

or for clarity

SELECT Field1, Field2, 'Value' AS Field3 FROM Table
link|flag
vote up 5 vote down

Yes - it's very possible, in fact you almost had it! Try:

SELECT Field1, Field2, 'Value' AS `Field3` FROM Table
link|flag
vote up 0 vote down

Many thanks. :)

link|flag
vote up 0 vote down

Thanks a lot. This answer "SELECT Field1, Field2, 'Value' AS Field3 FROM Table" was helpful to me.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.