SQL 難點解決:序列生成

1、 生成連續整數序列 MySQL8: with recursive t(n) as ( select 1 union all select n+1 from t where n<7 ) select * from t; Oracle:select level n from dual connect by level<=7; 集算器 SPL: A1:構造從 1 到 7 的整數序列 示例 1:百雞問
相關文章
相關標籤/搜索