DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Documents SQL Queries

SQL-QUERIES 1. Display all the information of the EMP table? A) select * from emp; 2. Display unique Jobs from EMP table? select distinct job from emp; select unique job…

Technology Sql queries with answers

1. SQL-QUERIES Emp table data Dept table data DEPTNO DNAME LOC 10 ACCOUNTING NEW YORK 20 RESEARCH DALLAS 30 SALES CHICAGO 40 OPERATIONS BOSTON 1. Display all the information…