Hi All
I am trying to query my access DB using a C# windows app and one of the fields is a type date/time. I have set the field to general date but when i run this query it displays the date and time set to 00:00:00. How can i just get the date and similarly just the time?
this is my query
("SELECT Staff.FName,Staff.SName, Shift.SDate, Shift.SStart, Shift.SEnd FROM Staff INNER JOIN Shift ON Staff.[StaffID] = Shift.[StaffID] WHERE Shift.SDate >=#" + tbStartDate.Text + "# and Shift.SDate <=#" + tbEndDate.Text + "#");
Cheers
Carlakawill