DBMS Practical Solution PDF
DBMS Practical Solution PDF
pkh
/*Practical 1 : Studying DDL-create and DML-insert commands*/
/* (i) Creating table according to the following defination*/
/*(2)*/describe borrow_e1;
describe customers_e1;
D://Jay-pc/dbms-prac/dbms.pkh
/*List of queries 1: */
/*(2)*/ select a_no,amount from deposit2_e1 where ddate between '01-JAN-06' and '25-JUL-06';
/*(5)*/ select emp_no, emp_name, deptno from employee_e1 where deptno in('10','20');
D://Jay-pc/dbms-prac/dbms.pkh
/*(3)*/ select * from employee_e1 where emp_comm is not null and emp_name like '_n___';
/*(4)*/ select * from employee_e1 where emp_comm is null and emp_name like '__a%';
/*List of queries : */
/*(9)*/ insert into sup2_e1 (emp_no) select emp_no from employee_e1 where emp_name like '_n___';