Viewing 15 posts - 826 through 840 (of 4,820 total)
July 26, 2018 at 11:08 am
WITH MIN_MAX AS (
SELECT pct.cargoid AS PACKAGE_ID,
MIN(ct.minfreight) AS MIN_minfreight,
MAX(ct.maxfreight) AS MAX_maxfreight
FROM packagecartype AS pct
LEFT OUTER JOIN cartype...
July 26, 2018 at 11:05 am
I have done that and seems to work, now I just need to get...
July 26, 2018 at 6:50 am
My table have 10000 records and i create the 5 store procedures...
July 26, 2018 at 6:40 am
July 26, 2018 at 6:33 am
July 25, 2018 at 3:51 pm
I'm not aware of anything in the category of functionality that says "consolidate a given tag set". Besides, there'd have to be a fair number of rules for such...
July 25, 2018 at 1:52 pm
BOR15K - Wednesday, July 25, 2018 12:56 PMNot sure why you have assumed SSRS. the call comes from C# application.
If that's...
July 25, 2018 at 1:25 pm
July 25, 2018 at 1:02 pm
July 25, 2018 at 12:52 pm
Just another way to do it:CREATE TABLE #TEST (
StopDateTime datetime,
StartTime time
);
INSERT INTO #TEST (StopDateTime, StartTime)
SELECT
StopDateTime = '2018-07-16 00:01:26.353',
StartTime = '23:51';
SELECT
July 25, 2018 at 12:39 pm
July 25, 2018 at 12:03 pm
Have to agree with Scott on the use of an identifier (int value) for the table is a better choice, and you can always have a master table for the...
July 25, 2018 at 11:55 am
Viewing 15 posts - 826 through 840 (of 4,820 total)