Viewing 8 posts - 16 through 23 (of 23 total)
Cheers for your suggestion, to get around this prior to my question I'm using the following SQL Query...
select
Q1 = case
when q1 = 1 then 'Poor'
when q1 = 2...
June 25, 2002 at 5:50 pm
Hi Tom,
That code worked great. Just comparing them the only difference I can see is elseif in your code and the else if in my code. I find...
June 25, 2002 at 5:23 pm
And then for the where clause you could use this...
where (exht - (datediff(hour,sampledate,getdate()))) < 24
It works over here.
Cheers,
Chris
June 25, 2002 at 5:07 pm
Hello,
You could try this...
select sgd,
datediff(hour,sampledate,getdate()) as 'TimeIn',
(exht * 24) as 'ExHrs',
...
June 25, 2002 at 5:06 pm
Ha, wonderful, it works like magic. Now I'll pull it apart to see exactly how you did it.
I'll go home tonoght and tell my wife that when we have...
April 22, 2002 at 9:03 pm
Ha, wonderful, it works like magic. Now I'll pull it apart to see exactly how you did it.
I'll go home tonoght and tell my wife that when we have...
April 22, 2002 at 9:02 pm
Good morning,
Thanks for your assistance on this one it's been a big help. The formula now works as it should.
Thanks again,
Chris
April 1, 2002 at 1:27 pm
Thanks to Preethi this job is now complete. I modified the code slightly to read the following...
Select Distinct A.Call_ID,
...
March 26, 2002 at 2:37 pm
Viewing 8 posts - 16 through 23 (of 23 total)