stuartgmilton
Programmer
Hey Guys,
I have 2 tables which I want to group on Date and ResourceDisciplineID.
I have gotten this far but get stuck adding the 2nd join? Anyone able to help?
select TFU.*,
SI.*
from #TimeFrameUnion TFU
LEFT JOIN
#ScheduledInfo SI on
TFU.resourcedisciplineid = SI.resourcedisciplineid
I have 2 tables which I want to group on Date and ResourceDisciplineID.
I have gotten this far but get stuck adding the 2nd join? Anyone able to help?
select TFU.*,
SI.*
from #TimeFrameUnion TFU
LEFT JOIN
#ScheduledInfo SI on
TFU.resourcedisciplineid = SI.resourcedisciplineid