oracle查询结果为大于号怎么用

2025-03-26 00:58:35
推荐回答(5个)
回答(1):

你这个问题应该是问条件中的大于怎么用的吧,比如:找出分数(score)大于60的学生的名字
select name from student where score > 60;
在oracle中,where条件后面可以使用 > , >= , < , <=, =这些符号的。

回答(2):

select * from emp where ID>='1111'

回答(3):

不是很明白

回答(4):

请详细说明问题

回答(5):

说详情。。