Curriculum
Course: Complete Oracle Apex Web Application Dev...
Login

Curriculum

Complete Oracle Apex Web Application Development Training

SQL Query : Common SQL*PLUS commands

0/1

SQL DDL : Creating and Managing Views

0/1

SQL Data Control Language (DCL)

0/1

Oracle SQL Quiz and Free E-books

0/2

Oracle PLSQL - Introduction

0/1

Creating Functions

0/1
Text lesson

What are Bind Variables?

Example :

set serveroutput on

VARIABLE X NUMBER;

BEGIN
:X:=11;
DBMS_OUTPUT.PUT_LINE(:X);
END;
/

DECLARE
X NUMBER:=1;
BEGIN
DBMS_OUTPUT.PUT_LINE(X);
END;
/

Live Courses