Viewing 15 posts - 1 through 15 (of 34 total)
Yes, you are correct on GUI side and I think I have a way to handle it. The Query you provided is spot on.
I have broken the query out so...
September 22, 2021 at 3:01 pm
I hear ya but I still need to query the DB to know how many slots are available for each time session. The problem with the above code assumes there...
September 21, 2021 at 9:05 pm
@anthony.green This is exactly what needs to be done. THANK YOU!!
Yes I should have inserted code rather than used the Blockquote.
I use some other forums and they do...
August 28, 2020 at 7:36 pm
Ok, First things first - My question is not clear or maybe somewhat clear. Second Forgot about holidays there is no business need for adjusting for them, "TRUST ME" I...
August 28, 2020 at 12:28 pm
I think I may have figured an easy way to do this. Since the interface controls the availability of the tool then a case statement can be created to drive...
June 16, 2020 at 10:09 pm
The schema would be based on the resulting data found in the <METAR></METAR> Tag. Sky_Condition gets a little tricky as the results could be one record or many records, so...
June 8, 2020 at 8:38 pm
Looks like I figured it out again. OK, Sorry folks Look like I need to spend more time on my own rather than quick to ask a question here. Don't...
April 24, 2020 at 9:20 pm
Sorry figured it out. I guess I needed to perform the substring in the JOIN clause DUH.
SELECT DISTINCT A.[Organization Name],
SUBSTRING(A.[Composite Med Procedure ID],4,5) [Unique CPT],
B.DESCRIPTION
FROM dbo.CCN_837...
April 23, 2020 at 3:32 pm
That'll do it. I have seen so many examples of doing this but with multiple rows and rolling up rows into still other rows. Blah Blah. THANK YOU !!!!
February 21, 2019 at 9:37 pm
Thank you I have asked for help and have an answer that I thought I would post:
---------------
-- SQL Method --
----------------
SELECT D.competency_name
,D.competency_id
January 14, 2019 at 10:03 pm
Great work - you were correct in your logic. NOW My next step is to update those records that = No. For those that = no then we would take...
April 17, 2018 at 12:58 pm
Hey guys thanks again for your help, I definitely have some cob-webs in the old SQL world. Last time I did the stuff I was using DTS. LOL
April 16, 2018 at 6:41 pm
So If the following is ran:
SELECT *
--SET B.Archive = 'Y'
FROM (
SELECT *,
ROW_NUMBER() OVER(PARTITION BY ProductDesc ORDER BY BatchID...
April 16, 2018 at 10:54 am
I noticed that in your code...
April 16, 2018 at 10:18 am
Viewing 15 posts - 1 through 15 (of 34 total)