Viewing 15 posts - 1,741 through 1,755 (of 4,087 total)
My understanding...
April 14, 2017 at 1:12 am
Folks,
I have inherited a table with 80K-100K records. Mostly, patient demographic data so, the columns...
April 12, 2017 at 12:55 pm
April 10, 2017 at 10:10 am
Someone with over 700 visits is asking where to place a WHERE clause. REALLY?!?!
April 10, 2017 at 9:58 am
April 7, 2017 at 3:58 pm
i have a query i want to improve speed of, the problem part of the...
April 7, 2017 at 1:04 pm
SELECT client, client_id, c.begin_dt, end_dt,
DATEADD(DAY, -1, LEAD(begin_dt, 1, end_dt) OVER(ORDER BY begin_dt)) AS new_end_dt
FROM #clients c
WHERE NOT EXISTS
(
SELECT *
FROM #clients c2
WHERE...
April 5, 2017 at 3:12 pm
There were several issues that I wanted to point out here.
April 5, 2017 at 2:36 pm
/*
The correct way to set up sample data.
1) Use a script like this.
2) Create a temp table or declare a table variable.
3)...
April 5, 2017 at 2:23 pm
April 5, 2017 at 1:40 pm
April 5, 2017 at 1:08 pm
April 5, 2017 at 12:59 pm
April 5, 2017 at 12:45 pm
Please provide sample data and expected results as outlined in first link in my signature. The sample data should be provided as a script that creates (temp) tables or declares...
April 5, 2017 at 12:36 pm
April 5, 2017 at 12:18 pm
Viewing 15 posts - 1,741 through 1,755 (of 4,087 total)