0
votes
Problem with SQL Join
It's your conditions in the where clause:
(tblScheduling.SchedulingYearID = @SchedulingYearID)
when there is no tblScheduling info this wil always fail. Add
(((tblScheduling.Sched …
1
vote
SQL Group By question SQL Server 2005 CE
I suppose what you meant to do was
SELECT TP.ID_TASK_MASTER, TP.ID_PROBLEM, TP.ID_TASK_PROBLE, P.DS_PROBLEM,
TP.SW_HASOK, TP.SW_HASNOK, TP.SW_HASTOK, TP.SW_HASVALUE,
…
