Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
180 views
in Technique[技术] by (71.8m points)

database - It's possible to use a collection in WHERE clausule and condition IN?

It's possible to do something like the following?

create or replace TYPE "TypeKeys" IS TABLE OF INTEGER;
/
Declare
    Keys TypeKeys;
    personT PERSON%ROWTYPE;
BEGIN
    Keys := TypeKeys();
    Keys.EXTEND(2);
    Keys(1) := 14;
    Keys(2) := 21;

    SELECT * INTO personT FROM PERSON WHERE ID IN (Keys);
END;
/

I need to find rows by multiple id's

question from:https://stackoverflow.com/questions/65602953/its-possible-to-use-a-collection-in-where-clausule-and-condition-in

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You could use member of:

SELECT * INTO personT FROM PERSON WHERE ID MEMBER OF Keys;

or a table collection expression:

 SELECT * INTO personT FROM PERSON WHERE ID IN (SELECT * FROM TABLE(Keys));

db<>fiddle

Of course, as you're selecting into a single record you'll get an error if there isn't exactly one matching row, however many key values you include in the collection.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...