How would i change this so it will work.
I need to link two tables.
but i get an error that says "Join expression not supported".
case 'N'://Get Jobs
//long n = Int64.Parse(Del);
SEL = "SELECT Employee.[Employee Number], Employee.[Last Name], " +
"[DaySchedule]![Shift Code Monday] AS Monday, " +
"[DaySchedule]![Shift Code Tuesday] AS Tuesday , " +
"[DaySchedule]![Shift Code Wednesday] AS Wednesday, " +
"[DaySchedule]![Shift Code Thursday] AS Thursday, " +
"[DaySchedule]![Shift Code Friday] AS Friday, " +
"[DaySchedule]![Shift Code Saturday] AS Saturday, " +
"[DaySchedule]![Shift Code Sunday] AS Sunday, " +
"DaySchedule.[Week Number] FROM Employee LEFT JOIN DaySchedule ON Employee.[Employee Number] " +
"WHERE Employee.[Employee Number] = '" + Del + "'";
break;