First I created a table like
CREATE TABLE Customer ( SD integer CHECK (SD > 0), Last_Name varchar (30), First_Name varchar(30) );
The CHECK constraint doesn't seem to be implemented in MySQL.
CHECK
See this bug report: https://bugs.mysql.com/bug.php?id=3464