展开全部
大于等于0小于等于100,表达式为X>=0 and X<=100,或者用另一种写法X between 0 and 100;
举例如下:
1、创建测试表,
create table test_range(id varchar2(20),value varchar2(20));
2、插入测试数据;
insert into test_range values(1, 123);
insert into test_range values(2, 5);
insert into test_range values(3, 100);
insert into test_range values(4, -5);
insert into test_range values(5, 0);
commit;
3、查询表中全量数据;select t.*, rowid from test_range t;
4、编写语句,只查询value为大于等于0小于等于100的记录;
select t.*, rowid sec from test_range t where value between 0 and 100;
2017-06-24 · 知道合伙人互联网行家
关注
展开全部
create table tableName(u_id int not null,u_age int check(u_age=>0 and u_age<=100);)数据库就这样啊, 明白了吗,采纳我的答案啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2016-12-29 · 知道合伙人软件行家
关注
展开全部
create table tableName( u_id int not null, u_age int check(u_age=>0 and u_age<=100); )
有用请采纳哦!
有用请采纳哦!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2017-04-25 · 中国六西格玛奠基人
张驰管理咨询有限公司
张驰咨询成立于2001年,专注提供六西格玛、精益六西格玛、精益生产、DFSS服务,客户均来自于全国各地,其中包含知名上市公司及世界500强企业,客户续约率连续10多年高达95%以上;
向TA提问
关注
展开全部
在建表时加上check(字段名>0 and 字段名<100);
create table table_name (
name varchar(3) ,
check(name>'0' and name<'100');
);
create table table_name (
name varchar(3) ,
check(name>'0' and name<'100');
);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
where条件中用 between ...and...
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询