Tuesday, June 8, 2010

Using Bind Variables in SQL*Plus

A quick note:

To define the bind variable
SQL> var :b1 number;

To assign values to the bind variable
SQL > exec :b1 := 8888;
   

No comments:

Post a Comment