select distinct a.Num as ConsecutiveNums
from Logs as a,Logs as b,Logs as c
where a.Num=b.Num and b.Num=c.Num and a.id=b.id-1 and b.id=c.id-1;

 

连续出现的数字

 

相关文章:

  • 2022-12-23
  • 2021-11-11
  • 2022-12-23
  • 2021-07-20
  • 2022-12-23
  • 2021-09-01
  • 2022-12-23
  • 2021-08-31
猜你喜欢
  • 2021-04-18
  • 2021-09-30
  • 2022-12-23
  • 2021-11-23
  • 2021-04-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案