
SQL Tutorial – Day – 05
–Single Row functions in Oracle: ================================= select first_name,upper(first_name),lower(first_name),initcap(first_name), length(first_name),reverse(first_name) from employees; select...
–Single Row functions in Oracle: ================================= select first_name,upper(first_name),lower(first_name),initcap(first_name), length(first_name),reverse(first_name) from employees; select...
Constraints In Oracle: ====================== Data validation before inserting the data into the...
— Select statement ================ select * from employees; select employee_id,first_name,email,hire_date,salary,department_id from employees;...
Welcome to Oracle SQL sessions [Please watch the YouTube session to understand...
— scalar Data types: declare v_first_name employees.first_name%type; v_salary employees.salary%type; begin select first_name,salary...
==================== —Trigger in Oracle: ==================== Â — Trigger is a PLSQL named...
create or replace package first_package as procedure greetings1(p_name IN varchar2); function hello_function(p_name...
Stored procedure: ================== –Stored as a precompiled object –Compile once and execute...
–What is cursor:Â cursor is defined as a private work area where...