I'm not looking for a specific answer to a question so much as a general direction of what to look for when doing further research. I have a query which is very useful and a certain aspect, mytable.column1 I frequently change. Depending on what mytable.column1 is, there is an alias in the table that I would like to change as well. So, if mytable.column1 is 1 the alias needs to be something like aliasFor1, if it's two, then the alias needs to be aliasFor2. What is the nomenclature for doing something such as this, and what are some good resources for reading up on it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
closed as not constructive by George Stocker♦ Nov 13 '12 at 19:41
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I think you are looking for computed columns (if I am right). Also covered here - Creating Table
Everytime you update See it happen in SQL Fiddle |
|||||
|
column1? What happens if that alias column doesn't exist - like if the value is set to 543, or are you sure this won't be allowed to happen? – PinnyM Nov 8 '12 at 18:01mytable.column2which would supply the alias based on whatmytable.column1was. – wootscootinboogie Nov 8 '12 at 18:03