I want to create a table where a column can't contain the value 0
have tried many times but its not working why?
The queries i have tried:
create tale t_name(a int(11) not null check(a<>0));
this query is ok but the column a is still taking the value 0
why?