Viewing 6 posts - 1 through 6 (of 6 total)
Thanks a lot, I appreciate your help with this.
February 20, 2008 at 9:57 pm
Hey Matt,
Where's that Tally table you are cross joining on?
February 20, 2008 at 2:53 pm
So, the TOP keyword in the SELECT is not working for you?
February 20, 2008 at 9:08 am
Do they have to be grouped somehow or ordered in the result set?
February 20, 2008 at 7:57 am
Look at the order of the execution of the statement.
1. Evaluate FROM clause
2. Evaluate WHERE clause
3. Evaluate GROUP BY clause
4. Evaluate HAVING clause
5. Evaluate SELECT clause
Your SELECT clause with the...
February 20, 2008 at 7:45 am
Sorry for that. I'll try to explain what's happening.
Let's say I have 3 records in my Price table
RowID BeginDate EndDate Price ($)
----------------------------------------------------
1 ...
February 20, 2008 at 7:26 am
Viewing 6 posts - 1 through 6 (of 6 total)