This document discusses control structures and loops in Oracle. There are three types of loops - simple, while, and for loops. Simple loops use the LOOP and EXIT WHEN keywords. While loops check the condition on entry to the loop. For loops specify a lower and upper bound for the counter variable. Loops can be nested by labeling inner and outer loops. Selective statements like IF, IF-ELSE, IF-ELSIF-ELSE, and CASE perform actions conditionally based on satisfied conditions.