Viewing 15 posts - 646 through 660 (of 8,731 total)
You're also either missing the closing parenthesis for the first CTE or having an extra opening parenthesis after the WHERE clause.
EDIT: Did I mention that you have several...
March 5, 2018 at 12:42 pm
March 5, 2018 at 12:40 pm
March 5, 2018 at 6:33 am
Bravo! You really out did yourself, Joe.
I wonder if anyone can make sense of your post.
March 1, 2018 at 11:11 am
0.85415 to 1 ?
I am getting a...
March 1, 2018 at 10:26 am
March 1, 2018 at 9:06 am
Something that might slow down inserts, but could really help is to add a bit column to the table to identify the most recent row. This column needs to be...
March 1, 2018 at 8:49 am
XML Path is usually the fastest way to create comma-separated lists. However, you shouldn't store them in a table and you shouldn't be concatenating all those values at once.
March 1, 2018 at 8:35 am
February 28, 2018 at 3:18 pm
You should change your UNION to UNION ALL
February 28, 2018 at 10:58 am
Is it possible that you have a group that is called everyone? The numbers are different on your results.
February 28, 2018 at 10:55 am
Your query looks so overwhelming when it can be so simple:
SELECT CAST( td.CallDateTime AS DATE),
COUNT(CASE WHEN td.CallTypeId = 1 THEN 1 END) AS [1],
February 28, 2018 at 7:41 am
February 27, 2018 at 1:06 pm
February 26, 2018 at 2:11 pm
Viewing 15 posts - 646 through 660 (of 8,731 total)