First i create a table like CREATE TABLE Customer (SD integer CHECK (SD > 0), Last_Name varchar (30), First_Name varchar(30));
and then insert values in that table INSERT INTO Customer values ('-2','abc','zz');
Its doesn't shows the error.Accept the values in mysql