Viewing 11 posts - 1 through 12 (of 12 total)
Thanks. I will give that a try.
September 27, 2008 at 7:37 am
My goal was to create a temp view instead of having to create many,many permanent views.This temp view would be be used in a query built from the same stored...
March 13, 2008 at 8:52 am
could you explain how a CTE would work. I failed to mention that this is for SQL 2000.
March 13, 2008 at 7:50 am
Thanks for all of the help.
I have resolved the issue.
CASE
WHEN Director IS NOT NULL AND Director = B.Director
...
March 10, 2008 at 6:29 am
I received an answer on another forum:
WHERE
CASE
WHEN A.Director IS NOT NULL AND A.Director = B.Director THEN 1
...
March 5, 2008 at 7:11 am
can you give me an example of hoe this might be done?
September 20, 2006 at 11:01 am
I thought I had it right but I need more help.
I tested my query as you suggested and it worked great, but when I added another level of complexity to...
May 30, 2006 at 8:21 am
Believe it or not but that was a big help. I needed to use the SELECT max statement but I didn't know enough SQL to know it existed. I modified...
May 26, 2006 at 1:49 pm
I found my problem. It was in the WHERE clause. I fixed it and it is OK now.
May 25, 2006 at 2:13 pm
I tried that and i still receive only the records that match.
May 25, 2006 at 2:03 pm
Viewing 11 posts - 1 through 12 (of 12 total)