输入字符串到表

发布于 2024-11-05 08:09:20 字数 851 浏览 0 评论 0原文

我正在对 Oracle 10g 的 SQL 进行一些调试。我有一个大输入字符串,用于“IN 子句”,即

select * from table where col in ('str2','str3','str4','str5',...) 

我想将 in 子句转换为行或表? 有没有办法做到这一点,即

select 'str2','str3','str4','str5', .. from dual 

,但这会输出多列,而我想要多行?

编辑:

这就是我正在尝试做的事情。假设我在 tmp_table1 中有一个 excel 数据(实际上无法创建)并且 tmp_table1 与 IN 子句相同,那么下面的语句将给出丢失的键。

SELECT *
  FROM tmp_table1
 WHERE unique_id NOT IN (
               SELECT unique_id
                 FROM table1
                WHERE unique_id IN
                                 ('str1', 'str2', 'str3', 'str4'))

现在@andriy-m 解决方案 有效。但如果它更大怎么办?

I am doing some debugging in SQL for oracle 10g. I have a big input string which is used in "IN Clause" i.e.

select * from table where col in ('str2','str3','str4','str5',...) 

i want to convert the in clause to rows or table?
Is there a way to do this i.e.

select 'str2','str3','str4','str5', .. from dual 

but this outputs multiple columns and i want multiple rows?

Edit:

Here is what i am trying to do. suppose i have an excel data in tmp_table1 (cant create in reality) and tmp_table1 is same as the IN clause, then the below statement will give the missing keys.

SELECT *
  FROM tmp_table1
 WHERE unique_id NOT IN (
               SELECT unique_id
                 FROM table1
                WHERE unique_id IN
                                 ('str1', 'str2', 'str3', 'str4'))

now @andriy-m solution works if the in string is less than 4000. but what if its greater?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清醇 2024-11-12 08:09:20

您可能正在寻找

You are probably looking for this solution.

红焚 2024-11-12 08:09:20

您可以将值合并为多行:

SELECT 'str2' AS col FROM dual
UNION
SELECT 'str3' FROM dual
UNION
SELECT 'str4' FROM dual
UNION
SELECT 'str5' FROM dual

You can UNION the values into multiple rows:

SELECT 'str2' AS col FROM dual
UNION
SELECT 'str3' FROM dual
UNION
SELECT 'str4' FROM dual
UNION
SELECT 'str5' FROM dual
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文