编写一个 SQL 查询,查找所有至少连续出现三次的数字。
例如,给定上面的 Logs
表, 1
是唯一连续出现至少三次的数字。
select distinct L1.Num as ConsecutiveNums from Logs L1,Logs L2,Logs L3 where
L1.Id = L2.Id - 1
and L2.Id = L3.Id - 1
and L1.Num=L2.Num
and L2.Num=L3.Num;