The INTO clause must appear AFTER the SELECT clause in PL/SQL cursor declarations. The correct order is: CURSOR name IS SELECT columns INTO variables FROM table WHERE condition. Here 'into my_city, my_state' appears before 'from CITIES', which is a syntax error.