oracle查询:取出每组中的第一条记录按type字段分组,code排序,取出每组中的第一条记录 方法一: select type,min(code) from group_info group by type; 注意:select 后面的列要在group by 子句中,或是用聚合函数包含,否则会有语法错误. 方法二: SELECT * FROM(SELECT z.type , z.code ,ROW_NUMBER()OVER(PARTITION BY z.type ORDER BY z.cod
背景: A表.B表两表关联,关联出来的结果里B表有不止一条,需求是只要B表结果中的某一条(按某字段排序) 首先想到了直接写个带排序的子查询去匹配外围的值,从这个结果集中只要第一条,但是经过验证发现,里边的条件是获取不到外层的值的,因此此方案不可行. 经过百度,发现 row_number() over函数可用,以下是数据环境及结果. 创建数据环境 )); insert into A values('alan'); insert into A values('Alee'); insert into
用Grid显示数据后,如何让系统自动选取第一条记录呢?在显示Grid时由于其Store正在loading,没法在Grid选取第一条记录,因为还没有记录,所以应在其Store进行操作. 查看Ext.data.Store的load()方法如下: load( [options] )Loads data into the Store via the configured proxy. This uses the Proxy to make an asynchronous call to whatever
CREATE TABLE [dbo].[test1]( [program_id] [int] NULL, [person_id] [int] NULL ) ON [PRIMARY] /*查询每组分组中第一条记录*/ select * from test1 as a where a.person_id in ( person_id from test1 where program_id = a.program_id); select * from ( select ROW_NUMBER() ove
背景: A表.B表两表关联,关联出来的结果里B表有不止一条,需求是只要B表结果中的某一条(按某字段排序) 经过百度,发现 row_number() over(partition by a order by b desc)函数可用(需要说明下,order by 必须有缺少会报错),以下是数据环境及结果. 创建数据环境 create table A(ANAME varchar(20)); insert into A values('alan'); insert into A values('Ale
1.select first 1 * from shop; 正序查询第一条数据 2.select first 1 * from shop order by create_time desc; 按创建时间倒序查询第一条数据 3.select first 1 shopid from shop; 正序查询第一条数据中的shopid字段 4.select first 1 shopid from shop order by create_time desc; 按创建时间倒序查询第一条数据的shopid字段
在日常生活方面,我们经常需要记录一些操作,类似于日志的操作,最后的记录才是有效数据,而且可能它们属于不同的方面.功能下面,从数据库的术语来说,就是查找出每组中的一条数据. 例子 我们要从上面获得的有效数据为: 对应的sql: select * from t1 t where id = (select top 1 id from t1 where grp = t.grp order by createtime desc )
项目需要筛选出不重复数据,以前没有做过,第一反应就是利用distinct处理,但是弄了好久也没搞出来,大家有知道的望告知下. 这次筛选没有使用distinct ,是利用group by ,利用id为唯一标示符(自增长),对按user进行排列,然后取重复项最小id(非重复项直接取唯一id),并以此id为条件查询,从而去除重复的数据. 数据格式为: 使用语句如下: select * from tbl_DPImg where ID in (select min(ID) from tbl_DPImg g
select * from ( select mp.MsgID,m.Content,m.CreatorID,m.CreateTime,ROW_NUMBER() over(partition by m.CreatorID order by m.CreateTime desc) as new_index from U_Account_WX_MsgProperty mp join U_Account_WX_Messages m on mp.MsgID=m.MsgID where mp.Us
SQL> set linesize 200 SQL> select * from (select a.* ,row_number() over( order by empno) rn from emp a) where rn=1 2 3 ; EMPNO ENAME JOB MGR HIREDATE SAL COMM DEPTNO DNAME RN ---------- ---------- --------- ---