天天看点

[LeetCode] Consecutive Numbers 连续的数字

Write a SQL query to find all numbers that appear at least three times consecutively.

For example, given the above <code>Logs</code> table, <code>1</code> is the only number that appears consecutively for at least three times.

这道题给了我们一个Logs表,让我们找Num列中连续出现相同数字三次的数字,那么由于需要找三次相同数字,所以我们需要建立三个表的实例,我们可以用l1分别和l2, l3内交,l1和l2的Id下一个位置比,l1和l3的下两个位置比,然后将Num都相同的数字返回即可:

解法一:

下面这种方法没用用到Join,而是直接在三个表的实例中查找,然后把四个条件限定上,就可以返回正确结果了:

解法二:

解法三:

继续阅读