Viewing 15 posts - 346 through 360 (of 842 total)
The days in which I was able to take a process that were running for hours in production and get them to run in just minutes or less.
The...
August 17, 2018 at 8:21 am
August 14, 2018 at 7:34 am
August 13, 2018 at 12:07 pm
August 13, 2018 at 7:24 am
August 13, 2018 at 7:18 am
Just another way around the barn.-- How far the Player is Behind the Player ahead of them.
WITH Rank_Scores_CTE AS
(
SELECT s.playername AS Player,
s.points AS...
August 9, 2018 at 9:28 am
And you really don't want a table called service and a field called service. This will be very confusing.
August 8, 2018 at 9:35 am
August 8, 2018 at 9:33 am
I created it as a temp table, but is this what you want?SELECT [service], vehicle,
COUNT(*) AS Quantity,
SUM(subtotal) AS subtotal,
SUM(TaxAmount) AS TaxAmount,
SUM(total) AS Total
FROM #jobs
GROUP BY [service], vehicle
;
August 8, 2018 at 9:00 am
August 7, 2018 at 11:03 am
August 7, 2018 at 8:35 am
August 6, 2018 at 9:32 am
August 6, 2018 at 9:30 am
Viewing 15 posts - 346 through 360 (of 842 total)