如何从 Oracle 中的值列表中进行选择 [英] How can I select from list of values in Oracle

查看:48
本文介绍了如何从 Oracle 中的值列表中进行选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我指的是这个 stackoverflow 答案:

I am referring to this stackoverflow answer:

我该怎么办从 SQL Server 中的值列表中选择

如何在 Oracle 中完成类似的操作?

How could something similar be done in Oracle?

我在此页面上看到了其他使用 UNION 的答案,虽然这种方法在技术上可行,但我并不想在我的情况下使用它.

I've seen the other answers on this page that use UNION and although this method technically works, it's not what I would like to use in my case.

所以我想保留或多或少看起来像逗号分隔的值列表的语法.

So I would like to stay with syntax that more or less looks like a comma-separated list of values.

更新 关于创建类型表 答案:

我有一张桌子:

CREATE TABLE BOOK
(   "BOOK_ID" NUMBER(38,0)
)

我使用这个脚本,但它没有向 BOOK 表中插入任何行:

I use this script but it does not insert any rows to the BOOK table:

create type number_tab is table of number;

INSERT INTO BOOK (
    BOOK_ID
)
SELECT A.NOTEBOOK_ID FROM
    (select column_value AS NOTEBOOK_ID from table (number_tab(1,2,3,4,5,6))) A
;

脚本输出:

TYPE number_tab compiled
Warning: execution completed with warning

但如果我使用这个脚本,它会向 BOOK 表中插入新行:

But if I use this script it does insert new rows to the BOOK table:

INSERT INTO BOOK (
    BOOK_ID
)
SELECT A.NOTEBOOK_ID FROM
    (SELECT (LEVEL-1)+1 AS NOTEBOOK_ID FROM DUAL CONNECT BY LEVEL<=6) A
;

推荐答案

您不需要创建任何存储类型,您可以评估 Oracle 的内置集合类型.

You don't need to create any stored types, you can evaluate Oracle's built-in collection types.

select distinct column_value from table(sys.odcinumberlist(1,1,2,3,3,4,4,5))

这篇关于如何从 Oracle 中的值列表中进行选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆