Viewing 5 posts - 16 through 20 (of 20 total)
The query is fine but you need to identify where are you taking certain fields from. For example, "ThreadID" appears in THREADS and POSTS, so use something like
select
t.ThreadID,
t.ThreadName,
t.ThreadDescription,
u.UserName as...
May 16, 2006 at 9:51 am
If you want a (T-SQL) query and your table "data" has a PK, say ID, you can do this:
select (select count(b.ID) from data b where b.ID <= a.ID) as...
May 9, 2006 at 1:30 pm
May 9, 2006 at 12:49 pm
Thanks for the replies, guys! I really apreciate it.
Probably Yelena is right that it's a Firewall issue bacause the sysadmin mentioned the same but we haven't looked into it yet....
April 24, 2006 at 8:27 am
So, it seems that my post does freak you out... Not to worry, I feel the same about the "situation". By the way,...
April 17, 2006 at 3:27 pm
Viewing 5 posts - 16 through 20 (of 20 total)