在建表时加上check(字段名>0 and 字段名<100);create table table_name (name varchar(3) ,check(name>'0' and name<'100'););