得到一个从1-10的表 with recursive a as ( select 1 as n union all select n+1 from a where n<10 ) 例题: 力扣https://leetcode-cn.com/problems/find-the-missing-ids/