Does the result of SELECT MAX([ColumnName]) have a column name? I know the result is a view of only one record and I'd thought this view has the original column name as the result column name?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It does not but you can give it one
If you think about it you will see why your assumption is wrong. What if the code was like this:
Which of the two will take the name of the column? |
|||||||||||
|
|
By default no, there is no particular column name. If you specify an alias it will have.
|
|||
|
|