Data Give
22
22
22
22
22
36
54
40
22
22
22
22
36
22
22
54
22
22
This is the column in table. Using an sql query we need to find out the pattern such as 22 36 54 40 is first pattern then 22 36 is second and 22 54 is third pattern.
Data Give
22
22
22
22
22
36
54
40
22
22
22
22
36
22
22
54
22
22
This is the column in table. Using an sql query we need to find out the pattern such as 22 36 54 40 is first pattern then 22 36 is second and 22 54 is third pattern.
You should use LEAD to get the value of the next row to see whether it's 22, and use that to get rid of all the extra 22s in the column. Something to this effect:
declare @t table (id int identity(1,1) not null, n int)
insert into @t
select 22 union all
select 22 union all
select 22 union all
select 22 union all
select 22 union all
select 36 union all
select 54 union all
select 40 union all
select 22 union all
select 22 union all
select 22 union all
select 22 union all
select 36 union all
select 22 union all
select 22 union all
select 54 union all
select 22 union all
select 22
select id,n from (select id,n ,lead(n) over (order by id)
as lead_val from @t ) t where n<>22 or lead_val<>22
This outputs:
5 22
6 36
7 54
8 40
12 22
13 36
15 22
16 54
PostgreSQL
Assuming: