no_data_found from select ... into : Select Into « PL SQL « Oracle PL / SQL






no_data_found from select ... into

    

SQL>
SQL> create table t ( object_id primary key, object_name )
  2  organization index
  3  as
  4  select object_id, object_name from all_objects;

Table created.

SQL>
SQL> create or replace procedure implicit
  2  as
  3      l_object_name t.object_name%type;
  4  begin
  5      for i in 1 .. 30000
  6      loop
  7          begin
  8              select object_name into l_object_name
  9              from t
 10              where object_id = i;
 11          exception
 12              when no_data_found then
 13                  l_object_name := null;
 14          end;
 15      end loop;
 16  end;
 17  /

Procedure created.

SQL>
SQL> drop table t;

Table dropped.

SQL>

   
    
    
    
  








Related examples in the same category

1.Select value from table into variable
2.Oracle returns an error when a SELECT statement returns more than one row
3.Catch too_many_rows Exception for 'Select into' statement
4.Multiple-Row SELECT Command with Several Exception-Handling Routines
5.Select count result into a variable
6.Output variable after 'select into'
7.SELECT into value pair
8.Select the number of employees into the l_emp_count variable
9.Select into and subquery
10.Select single value into variable
11.Select two columns into a cursor variable
12.Select value into a number variable in a for loop
13.Select value to variable one by one
14.If no records are retrieved for a SELECT - INTO statement the following error is returned
15.If too many records are returned for a SELECT - INTO statement the following error is returned
16.select bulk collect into table collection
17.Use subquery in pl/sql block
18.This script demonstrates how to do a non-bulk select into elements of a PL/SQL table.
19.TOO_MANY_ROWS exception and select into command
20.Store max(salary) to a variable
21.Store max(tableName.column) to tableName.column.type variable
22.Bulk Collection: fetch a single row from the ALL_OBJECTS table.
23.Calculate salary by adding salary with max(salary)
24.Select data for update
25.Select value from aggregate function to variable