I have an application where I store a value with date-type "as string"
The problem is that the results of the query aren't being shown correctly in C# when I execute the program, but when I apply the same query in mysql workbench the results are correct.
The date value is stored as a string in mysql; can we use comparison this way as shown or is it wrong?
string s = "select date from guest,program where guestid=guest.id AND *date >= " + date + "* "' ";
datevariable would help us understanding the issue.