i cannot filter by date i am using visual studio 2010 and C#
here are the simplified statement i try with no success
SELECT date_dt, ident_1, ident_2, ident_3
FROM p240538
WHERE (date_dt >= DateTime('"2011' / 10 / '19"'))
or
SELECT date_dt, ident_1, ident_2, ident_3
FROM p240538
WHERE (date_dt >= "2011/10/19"))
any ideas??
thanks
I think you were close. Looks like you want something like:
EDIT:
First thought this was a linq question, and after submitting it realized it was a sql question. Try: