I have a time record table and an employee table joined by EMP_No field. I set up an inner join querry to fill a list box. Works fine till I want to restrict it by date value - it just ingores the where clause. I do not get any errors when run just all the records.
Select ET.fields, JBT.fields from EMP_Table as ET inner join JBT_Table as JBT on ET.Emp_No = ET.Emp_No order by ET_Date DESC
I tried putting the where clause after the on clause.
Thanks for any help
Select ET.fields, JBT.fields from EMP_Table as ET inner join JBT_Table as JBT on ET.Emp_No = ET.Emp_No order by ET_Date DESC
I tried putting the where clause after the on clause.
Thanks for any help