Monday, 4 March 2019

DBMS Handson

DDL HANDSON
create table Department (dept_id number(10),dept_name varchar(20));
Press continue
alter table Department add Location varchar(20);

Press continue
drop table Department;

DQL HANDS ON

Step 1: click on the commands given side
step 2: select DEPT_NAME
              from department
              where DEPT_ID = 100;


DML HANDSON

Step 1: insert into Employee values(1,'AAA',20000,100);
Insert into Employee values(2,'BBB',30000,200);
insert into Employee values(3,'CCC',30000,300);
commit;
STEP 2: update Department set DEPT_NAME='FINANCE' where DEPT_ID=100;
commit;


Constraints hands on

alter table department add constraint dept_id primary key (dept_id);
alter table employee add foreign key (dept_id) references department (dept_id);

*5. Joins hands-on*

Step 1:
Simply enter User name and password

Step 2:
Select SALARY
from Employee, department
where DEPT_NAME = 'IT'
and Employee.DEPT_ID = department.DEPT_ID;

Step 3:
Select DEPT_NAME
from department
where DEPT_ID = (select DEPT_ID from
(Select DEPT_ID, count(DEPT_ID)
from Employee
group by DEPT_ID
order by 2 desc) where rownum = 1);p
----------------
PL/SQL
SET SERVEROUTPUT ON
DECLARE
    i NUMBER(3);
    j NUMBER(3);
   s NUMBER(3);
BEGIN
    s := 0;
    i := 2;
    LOOP
        j := 2;
        LOOP
            EXIT WHEN( ( MOD(i, j) = 0 )
                        OR ( j = i ) );
            j := j + 1;
        END LOOP;
        IF( j = i )THEN
           s := s + I;       
        END IF;
        i := i + 1;
        exit WHEN i = 30;
    END LOOP;
   dbms_output.Put(s||'   ');
 dbms_output.new_line;
END;
/

CURSORS
SET SERVEROUTPUT ON
DECLARE
    s NUMBER(3);
    CURSOR employee_cur IS
      SELECT salary
      FROM   Employee;
BEGIN
    s := 0;
    FOR employee_rec IN employee_cur LOOP
        IF employee_rec.salary < 50000 THEN
          s := s + 1;
        END IF;
    END LOOP;
 dbms_output.Put(s||'   ');
dbms_output.new_line;
END;
/


IamAnarchy:
PL/SQL:
SET SERVEROUTPUT ON
DECLARE
    i NUMBER(3);
    j NUMBER(3);
   s NUMBER(3);
BEGIN
    s := 0;
    i := 2;
    LOOP
        j := 2;
        LOOP
            EXIT WHEN( ( MOD(i, j) = 0 )
                        OR ( j = i ) );
            j := j + 1;
        END LOOP;
        IF( j = i )THEN
           s := s + I;         
        END IF;
        i := i + 1;
        exit WHEN i = 30;
    END LOOP;
   dbms_output.Put(s||'   ');
 dbms_output.new_line;
END;
/

CURSORS:
SET SERVEROUTPUT ON
DECLARE 
s NUMBER(3);
 c_salary Employee.salary%type;
CURSOR c_employee is 
      SELECT salary FROM Employee; 
BEGIN 
s := 0;
   OPEN c_employee; 
   LOOP 
      FETCH c_employee into c_salary; 
      EXIT WHEN c_employee%notfound; 
     IF c_salary < 50000 THEN
          s := s + 1;
        END IF;
   END LOOP; 
 dbms_output.put_line(s || ' '); 
   CLOSE c_employee; 
END; 
/

AVERAGE:
create or replace function findAverage(a number,b number,c number)
return number
as out number;
begin
 out := a+b+c;
 out := out/3;
 return out;
end;
/

6 comments:

  1. please post sql join handson.

    ReplyDelete
  2. Plz.post other 2 pl sql handson and pl sql quiz.

    ReplyDelete
  3. bro , for dbms constraints handson this is not running
    select salary from employee where dept_id=(select dept_id from department where dept_name='IT');
    i'm getting output as
    salary
    -------
    500000
    this is correct but i've to print just 50000, what should i do??

    ReplyDelete
  4. Pl/sql code has error..not working..pls upload the correct one..

    ReplyDelete
  5. please provide all hands-on with question and answer of pl/sql

    ReplyDelete
  6. 1) Department table:
    Dept_Id number(5) primary key,
    Sept_Name varchar2(20),
    Employee_strength number(4) not null.

    2)Employee table:
    E_Id number(5),
    E_Name varchar2(20),
    Designation varchar2(20),
    D_ID number(5) references Department table Dept_ID.

    Write a pl/sql to print the name the departments which has employees having the designation as "SE",
    if no record in the department table fulfilling the given conditions found ,code should print the message "No record found" and if the record found code has to print Department name.

    ReplyDelete

ASP.NET Core: How to implement Azure Active Directory (AAD) Authentication in ASP.NET Core

  In this tutorial, we will implement security for ASP.NET Core Application using Azure Active Directory (AAD).  In this tutorial, I will co...