Viewing 15 posts - 57,721 through 57,735 (of 59,048 total)
This should do the trick... the SELECT is where the rubber meets the road... the rest of the stuff is just setting up for the demo of the SELECT...
--===== If...
September 4, 2006 at 7:22 pm
Actually, I've resurrected some old code I was working on to make a WebTask that would make some pretty output... the output does not yet list the primary or other...
September 4, 2006 at 6:20 pm
| I also realize that there is no 'Descritpion' value for a column in the DB and that the... |
September 4, 2006 at 5:02 pm
Nope... new columns always get added to the "end" of the table if you use just an ALTER.
However, if you go into Enterprise Manager to design the table (add the...
September 4, 2006 at 4:20 pm
By the way (drum roll, please), congrats on the more than 7000 posts you've made ![]()
September 4, 2006 at 3:55 pm
True enough... you won't be making a view out of it, for sure ![]()
September 4, 2006 at 3:54 pm
Yep... and you've nailed the key to it... exclusive access... now, what table(s) will a developer ALWAYS have exclusive access to?
September 4, 2006 at 3:32 pm
Yap... we've all written "those"... see the update I just posted to my previous message...
September 4, 2006 at 3:23 pm
Sure, Remi... thanks for the interest...
Personally, I think triangular joins should never be used because it's an absolutely insane form of RBAR (a "Modenism" for "Row By Agonizing Row"). Here's an example...
September 4, 2006 at 3:09 pm
| Update B : It is a base table problem. I'm still using your code above though. Very useful. ... |
September 4, 2006 at 1:02 pm
X/2 records is the difference ![]()
Not sure why Mark thinks one is necessary here even with his latest explanation. Still trying to figure it...
September 4, 2006 at 12:58 pm
I guess I don't have enough information... first, I'm not sure why you need this...
join Number_list n
on n.number < t.Person_count --This makes a triangular join!!!
WHERE n.number < @Max_person_count
Second, are...
September 4, 2006 at 11:55 am
Richard,
Each instance of CASE must have an END... You have 3 instances of CASE but only 1 END. That would be the problem.
However, the other guys are right... in this...
September 4, 2006 at 11:00 am
Viewing 15 posts - 57,721 through 57,735 (of 59,048 total)