Viewing 2 posts - 1 through 2 (of 2 total)
Why would it read twice?
March 16, 2021 at 11:25 am
#3858441
UnPivot works for this
Create Table #Test (Id Int, DtCont1 char(8), DtCont2 char(8), DtCont3 char(8))Insert #Test (Id, DtCont1, DtCont2, DtCont3) Values (1, '20180229', '20180330', '20180428')SELECT Id, DtContFROM #TestUNPIVOT(DtContFOR...
October 2, 2019 at 12:14 pm
#3685247