简体   繁体   中英

SQL How to create a list from Dual inside a WITH

I don't want to create tmp tables. How to make this work?

with a as (
340401182,
340401183
)
select * from a

If you want two rows and one column do this

with a as 
(
   Select 340401182 as val from dual
   UNION ALL
   Select 340401183 as val from dual
)
select * from a

Very close....

with a as (
SELECT 
    340401182 AS Col1,
    340401183 as Col2
)
select * from a

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM