Apex_Collections - How do I loop through an apex collection of arrays
问题 I have a collection of array's, currently the code select apex_collections.c001 from apex_collections where collection_name = 'LOAD_CONTENT' Shows the below on screen. C001 570 571 I have another table called errorTable that has a column Table1ID that matches with the values contained within the C001 array. I need to display all the records within the errorTable to the user where there is a match. In this example I want to show all records in errorTable where Table1ID match '570' or '571'. I