I am trying to create a table in mysql. I want to store future dates in that table. I am trying following query:
SQL:
create table dates(submission _date date check(submission _date>curdate));
But this check Clause is not working properly. It accept all dates. Please give me solution.