I have a line of code
string datenow = DateTime.Now.ToString("dd'/'MM'/'yyyy");
"SELECT * from trialevent where date <= '"+datenow+"'";
For example, datenow is 12/02/2016
"SELECT * from trialevent where date <= '12/02/2016'";
which means I want data where date after or equal to 12/02/2016, but i keep getting this
trialevent | date
38 | 10/02/2016
39 | 11/02/2016
40 | 11/02/2016
41 | 12/02/2016
Here's the thing, I don't want 10/02/2016 and 11/02/2016. And I have a column 24/02/2016 which is not showing.