Wednesday, February 16, 2022

REGEXP_SUBSTR

 SELECT REGEXP_SUBSTR ( VALUE,

                                                     '[^,]+',

                                                     1,

                                                     ROWNUM)

                                         AS result

                                 FROM TABLE WHERE ATTRIBUTE='EXAM'

                           CONNECT BY LEVEL <=

                                           LENGTH (

                                              REGEXP_REPLACE (

                                                 VALUE,

                                                 '[^,]+'))

                                         + 1

Delete Row Button to all records of Interactive Report in Oracle Apex

 1. add 'Delete' Del column to Report Query 2. Set the Following Properties for the DEL Column Type: Link Heading: Delete Targ...