DOCUMENT RESOURCES FOR EVERYONE
Documents tagged
Documents 19482524-Curso-de-Oracle-PLSQL

 SolucionJava.com   Ing. Cedric Simon – Tel: 2268 0974 – Cel: 8888 2387 – Email:   c e d r i c @ s o l u c i o n j a v a . c o m  – Web: www.solucionjava.com…

Documents Sri(SQL Notes)

1..display all group function on sal? sql>SELECT MAX(SAL),MIN(SAL),SUM(SAL),AVG(SAL),COUNT(SAL) FROM EMP; 2..DISPLAY THOSE EMPLOYEE WHOSE SALARY IS EVEN NO? SQL>SELECT…

Documents curso de oracle basico e intermedio 11gR2

Manual de Iniciación a Oracle TEMA 1 EL MODELO RELACIONAL El modelo relacional    E.F. Codd propuso el modelo relacional para sistemas de b.d. En 1970. Sustituyó…

Documents 9 Join Sub Query

Joins & Sub-queries Oracle recognizes that you may want data that resides in multiple tables drawn together in some meaningful way. One of the most important features…

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…

Documents OracleQueries

Oracle Queries 1) DISPLAY THE DETAILS OF ALL EMPLOYEES A) SELECT * FROM EMP; 2) DISPLAY THE DEPART INFORMACTION FROM DEPARTMENT TABLE A) SELECT * FROM DEPT; 3) DISPLAY THE…

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…