Viewing 13 posts - 1 through 13 (of 13 total)
I would request a couple of extra monitors in a private meeting area as I'm sure there would be someone I would want to chat with at a conference and...
June 26, 2009 at 7:18 am
I work for a software vendor and we have both encrypted and non-encrypted procedures in our db. Usually we use it to denote something that is critical to the...
April 10, 2009 at 3:53 am
You don't need to include the AmtSign in the group by (as your code shows) and once you don't include it in the group by (which is unnecessary as it...
April 3, 2009 at 9:30 am
Brandie,
I have yet to find an instance where copying the CASE statement to the GROUP BY clause has not satisfied the need for grouping, but you mentioned you have experienced...
March 26, 2009 at 5:39 am
Brandie,
Having a field referenced in a CASE within the SELECT statement does not specifically require the field to be part of the GROUP BY clause. It will work if...
March 25, 2009 at 10:59 pm
What was the problem and how did you solve it? If you leave it up, you may help the next person that encounters the same issue.
July 3, 2008 at 10:58 am
didn't see this was underway in a different forum before i posted, sorry about that. also, the code isn't tested so i apologize for any typos and syntax errors...
June 13, 2008 at 11:33 am
assumptions: you want to use lname, fname to order your results for selection or order does not matter, fname/lname combo is the primary key in masterlist
DECLARE @iStartPosition INTEGER
SET @iStartPosition=3
WHILE (SELECT...
June 13, 2008 at 11:29 am
The posted solution may not return all data. If the date doesn't exist in the first view, it will not be used in the output.
June 3, 2008 at 12:46 pm
Do any of the views have all of the dates you will need?
Do you need all of the rows or are you looking for a particular subset of the data?...
June 2, 2008 at 8:41 pm
This might work for you
SELECT DISTINCT WM.Woman, GY.Guy
FROM Woman WM
INNER JOIN Guy GY ON GY.Char=WM.Desired
WHERE (SELECT COUNT(1)
FROM...
June 2, 2008 at 1:18 pm
This is a possible solution. I am not sure how to avoid it, but I'm sure someone will post another solution that doesn't go RBAR which would definitely be...
June 2, 2008 at 11:01 am
Viewing 13 posts - 1 through 13 (of 13 total)