PL/SQL query IN comma deliminated string

前端 未结 10 2172
攒了一身酷
攒了一身酷 2021-01-02 04:46

I am developing an application in Oracle APEX. I have a string with user id\'s that is comma deliminated which looks like this,

45,4932,20,19
10条回答
  •  攒了一身酷
    2021-01-02 05:42

    If possible the best idea may be to not store your user ids in csv! Put them in a table or failing that an array etc. You cannot bind a csv field as a number.

提交回复
热议问题