Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 7 down vote accepted

It does not but you can give it one

SELECT MAX([ColumnName]) AS MaxName

If you think about it you will see why your assumption is wrong. What if the code was like this:

SELECT MAX([ColumnName]), MIN([ColumnName])

Which of the two will take the name of the column?

share|improve this answer
1  
+1 for beating me by 19s! – AdaTheDev Nov 10 '10 at 8:55
1  
I was going to make a post about the problem with MIN/MAX, but of course, SQL is poor enough to let you have two columns with the same name (even though it shouldn't) – Damien_The_Unbeliever Nov 10 '10 at 9:26
Oh... I didn't know that. How absurd. Well then again it would be useless to assume the name of the column because it would be the same as having no column name (i.e. you cannot distinguish by name). – Stilgar Nov 10 '10 at 9:50

By default no, there is no particular column name. If you specify an alias it will have.

SELECT MAX([ColumnName]) as [max_value_column_name]
share|improve this answer

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.