Sure, The column selected is timestamp.
According your suggests, the dialog box error show sql sentence:
SELECT t_stamp FROM Cortes
WHERE t_stamp >= ‘2008-07-28 00:00:00’ AND t_stamp <= ‘2008-08-27 23:59:59’
ORDER BY t_stamp
I was converted the date field to char,on option WHERE, but show me same error. Now
the sql sentence has the next behaviour:
SELECT t_stamp FROM Cortes
WHERE [b]t_stamp >= ‘2008-07-28 00:00:00’ AND t_stamp <= ‘2008-08-27 23:59:59’
AND /b
AND (LEFT(CONVERT(varchar,t_stamp,120),10)<= ‘2008-08-27 23:59:59’)
ORDER BY t_stamp
I think the error is that the sentence in black label appeared, how put out the sentence marked?