Good SQL qUERIES
Good SQL qUERIES
15. Select all record from emp table where deptno =10 or 40.
16. Select all record from emp table where deptno=30 and sal>1500.
17. Select all record from emp where job not in SALESMAN or CLERK.
19. Select all records where ename starts with ‘S’ and its lenth is 6 char.
20. Select all records where ename may be any no of character but it should end with
‘R’.
select * from emp where sal> any(select sal from emp where sal<3000);
25. Select all the employee group by deptno and sal in descending order.
26. How can I create an empty table emp1 with same structure as emp?
DDL
Data Definition Language (DDL) statements are used to define the database structure or schema. Some examples:
DML
Data Manipulation Language (DML) statements are used for managing data within schema objects. Some examples:
DCL
Data Control Language (DCL) statements. Some examples:
TCL
Transaction Control (TCL) statements are used to manage the changes made by DML statements. It allows statements to be
grouped together into logical transactions.