Oracle procedure with cursor Post author:jonathansblog Post published:May 11, 2014 Post category:Development / Methodology / SQL Post comments:0 Comments This is a basic oracle procedure with cursor: DECLARE CURSOR my_cursor IS SELECT * FROM table_a LEFT JOIN table_b ON a.x = b.x BEGIN FOR things IN my_cursor LOOP -- do stuff END LOOP COMMIT;END; Read more articles Previous PostOracle instead of triggers Next PostOracle forms overview You Might Also Like A Classification of SQL Injection Attacks and Countermeasures May 27, 2020 4 Layers in an SOA January 10, 2015 Sentry.io – Taming the Kraken (octopus energy) notes March 1, 2024 Leave a Reply Cancel replyYou must be logged in to post a comment.