Hi - in SQL server I would use this statement:
SELECT RunID, StartTime, ProductID
FROM ProductRun
WHERE (CONVERT(varchar(11), StartTime, 120) = CONVERT(varchar(11), ?, 120))
But I get a undefined function 'CONVERT' in expression......
I just need to select all entries from a selected date, ignoring the time..... halp!
Start Free Trial