比如用select语句,查询结果返回是某字段最大值的那条记录。
比如输出的是体重最大的那条记录,包括年龄,爱好等内容。
pl/sql如何实现查询指定条件的记录
答案:2 悬赏:60 手机版
解决时间 2021-01-03 22:39
- 提问者网友:世勋超人
- 2021-01-03 11:59
最佳答案
- 五星知识达人网友:未来江山和你
- 2021-01-03 12:21
select * from 表名 where 体重 in (select max(体重) from 表名)
表名替换一下,*那个地方,你换成你想查询的字段,比如
select 年龄,爱好 from 表名 where 体重 in (select max(体重) from 表名)
表名替换一下,*那个地方,你换成你想查询的字段,比如
select 年龄,爱好 from 表名 where 体重 in (select max(体重) from 表名)
全部回答
- 1楼网友:山有枢
- 2021-01-03 13:50
create or replace view 列表(名)
select area_information.area_name as area_id,
location_id3 as 仓位代码,location_ip4 as 仓位ip,
......
customer_information.customer_name9 as customer_id
unusable_sign as 禁用
......
where area_information.什么 = customer_information.什么
只看懂这些。。。建个视图,条件里是写几个表的关联。
group by
order by
可能用的上
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯