I have a table with two columns:
assign_date | complete_date
----------------------------
2004-04-23 | 2005-05-13
... | ...
The dates are in the format yyyy-mm-yy.
When I am inserting a new row, I always want the complete_date to be at or after the assign_date. So if a row had an assign_date of 2013-10-10, 2013-10-09 would be invalid. Is there a way to do this in mysql without using triggers?
CHECKclause, currently no storage engine supports it.