在不使用自定义函数的情况下怎么样解决
想要达到的效果相似于 select from (1,2,4,5,6,7) 或 select from ‘1,2,4,5,6,7’
(这种sql语句肯定是错误的 本人只是想用来表达本人的意思 不知道有没有表达明白)
然后得到结果集
—
1
—
2
—
4
—
5
—
6
—
7
—
想要达到的效果相似于 select from (1,2,4,5,6,7) 或 select from ‘1,2,4,5,6,7’
(这种sql语句肯定是错误的 本人只是想用来表达本人的意思 不知道有没有表达明白)
然后得到结果集
—
1
—
2
—
4
—
5
—
6
—
7
—
解决方案
20
select * from (
select 1
union all
select 2
union all
select 3
) t
select 1
union all
select 2
union all
select 3
) t