Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to return everything in my table but I want to change the column headings ONLY when it gets returned.

SELECT * FROM d_cds 

That returns all the values from the table under the original column headings. How would I display them with different headings?

share|improve this question
Why can't you explictly list the columns giving each an alias? – GarethD Feb 15 '12 at 17:39
I asked that and was informed he wanted them shown in a different format. – Robert Feb 15 '12 at 17:47

1 Answer

up vote 4 down vote accepted
SELECT yourColumn as NameYouWant FROM d_cds 
share|improve this answer
Thank you. That did it. – Robert Feb 15 '12 at 17:42
no problem, please mark as answer – Diego Feb 15 '12 at 17:44
6 more minutes until I can – Robert Feb 15 '12 at 17:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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