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

What is wrong with this statement??

SELECT ID, datediff("mi", Start, End) as Total 
FROM TimeTable
WHERE Total is not null

I get an error "Invalid column name"

share|improve this question

2 Answers

up vote 12 down vote accepted

Reference the expression, not the alias.

SELECT ID, datediff("mi", Start, [End]) as Total 
FROM TimeTable
WHERE datediff("mi", Start, [End])  is not null

EDIT, updated to prevent syntax error for usage of END

share|improve this answer
1  
and wrap End in [ ] – Sk93 Aug 6 '09 at 16:16
lol, that's exactly what my parser just said. – cmsjr Aug 6 '09 at 16:17
1  
The select clause is processed, logically, prior to the where clause. The aliases are not available until after the select clause is processed. (Almost?) all clauses, except ORDER BY are processed prior to the select clause. Order by can use aliases because it is processed after the select clause. – Shannon Severance Aug 6 '09 at 19:58

Don't use reserved words like "End" as table or column names! Use something like TaskStart/TaskEnd or JobStart/JobEnd or StartDate/EndDate, you'll thanks me everytime you don't have to go back and add [] around your table/column names....

share|improve this answer
it was a name just for an example case.. – agnieszka Aug 6 '09 at 16:42
1  
not really an answer. would be better as a comment. – Nick Jan 9 at 10:07
@Nick, thanks for the down vote! by following my answer Don't use reserved words like "End" as table or column names the OP's error Invalid column name would be solved. Hardly worthy of a down vote, what in my answer is technically wrong? see: stackoverflow.com/privileges/vote-down – KM. Jan 9 at 13:25
@KM sorry, re-reading the whole thread your answer makes perfect sense. If I could retract the down-vote I would :( I was probably hacked off with SQL at the time. – Nick Jan 9 at 16:50
@Nick, you can now, if you want to... – KM. Jan 9 at 18:34
show 1 more comment

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.