标签:alt distinct 高级 HERE rac oracl 使用 关键字 com
1.序列、唯一标识
查询时,可以添加递增序列 rownum
表的数据每一行都有一个唯一的标识 rowid
2.函数
单行:查询多条数据
如:to_date()
多行:查询总结数据,一般用于group by
如:sum()
3.去重 distinct
select distinct from tablename
4.分区 partition
select tenantcode,row_number() over(partition by tenantcode order by tenantcode, brandcode, storecode ) groupid from tablename
若要分区筛选出id=1的,可以
select * from( select tenantcode,row_number() over(partition by tenantcode order by tenantcode, brandcode, storecode) groupid from tablename
) where groupid=1
标签:alt distinct 高级 HERE rac oracl 使用 关键字 com
原文地址:https://www.cnblogs.com/wskxy/p/10155572.html