Viewing 15 posts - 2,596 through 2,610 (of 15,381 total)
sony.francis 69835 (7/28/2015)
Use full outer join
You mean like the code I posted?
July 28, 2015 at 7:12 am
Eric M Russell (7/27/2015)
Sean Lange (7/27/2015)
Eric M Russell (7/27/2015)
July 27, 2015 at 3:31 pm
Eric M Russell (7/27/2015)
July 27, 2015 at 3:12 pm
I can only surmise that this is your blog that you are linking to.
abhishek_300 (7/27/2015)
Solution :
Using...
July 27, 2015 at 2:39 pm
sqlinterset (7/27/2015)
SELECT 1AS ID,'May-2014' AS date,7 AS I1
UNION ALL SELECT 1,'May-2014',4
UNION ALL SELECT 1,'May-2014',5
UNION ALL SELECT 1,'Jun- 2014',2
UNION ALL SELECT 1,'Oct-2014',1
UNION ALL SELECT 2,'Jan-2013',10;
Table2:
SELECT 1AS...
July 27, 2015 at 2:39 pm
Jason A. Long (7/27/2015)
SELECT ID, [Date],0 AS T1, I1 FROM K1
UNION ALL
SELECT ID, [Date], T1, 0 AS I1 FROM K2
ORDER...
July 27, 2015 at 2:05 pm
I can give you a real world example of where storing a delimited string made the most sense. This is something I built just a few months ago.
We have...
July 27, 2015 at 2:04 pm
sqlinterset (7/27/2015)
K1:
IDdate I1
11-May-147
11-May-144
11-May-145
1Jun-142
1Oct-141
2Jan-1310
K2:
IDdate T1
11-May-14300
1Jun-14400
1Jan-15100
1Apr-15200
1Oct-131000
3Jan-15600
I want a result table as:
IDdate ...
July 27, 2015 at 1:47 pm
shamshad.ali (7/20/2015)
July 27, 2015 at 7:49 am
Ells (7/27/2015)
July 27, 2015 at 7:38 am
Adam Sandler (7/27/2015)
To move away from an...
July 27, 2015 at 7:37 am
Alvin Ramard (7/24/2015)
Revenant (7/24/2015)
I cannot believe that this resulted in five pages of discussion.Thanks, Mike!
Make that 6.
Still on page 2 for me. 😛
July 24, 2015 at 12:14 pm
Steve Jones - SSC Editor (7/24/2015)
My kids have declined margaritas,...
July 24, 2015 at 10:56 am
michaelf.fitzpatrick (7/24/2015)
Because the question...
July 24, 2015 at 9:53 am
edwardwill (7/24/2015)
Sean Lange (7/24/2015)
July 24, 2015 at 8:18 am
Viewing 15 posts - 2,596 through 2,610 (of 15,381 total)