You are on page 1of 3

1.

Story about SQL 979 sql frist used


2.SQL
How SQL Work
DML (SELECT, insert, update,delete merge)
DDL (create, alter,drop, rename, truncate, comment)
Data Control Language (Grant, Revoke)
Transaction control Languange (Commit, rollback, savepoint)
wahat is fungction Oracle JDeveloper..?
3. DEMO

4. RDMS Concept dan contoh


realtion mulitiple table white orale
5 human resource HR Schema
6. write SQL statement
tidak case sensitif
dijalankan perbaris

7. use db HR in oracle 11g


8. Arthmetic operation
Select lastName, salary, 12 *(salary + 300)*commission_pct
from Karyawan;
null is not same as zero.
Expersion Arithmetic

9. Column Aliases (untuk mengganti nama filed pada kolom yang ingin di tampilkan atau
exsekusi serta dapat menghitung dan menggabungkan beberapa filed menjadi satu kolom.
TANPA mengubah filed pada data base)
SELECT last_name AS "name", commission_pct comm
From employess;
select last_name AS "Name", 12 * salary "Annual Salary"
from employess;
select last_name || job_id AS "employsd info"
from employess;

10. Literal Character String


SELECT last_name ||' is a ' || pekerjaan AS "nama dan pekerjaan"
FROM tablename;

11. Altrnative Quote


SELECT departemen_name || q'[Departement's managers ID]' || Manager-id
From departemen;

12. DISTINCT Keyword


keyword sql for none DUPLICATED ROWS
select DISTINCT depatemen_id, job_id FROM employe.

13.DESCRIBE command
for describe table
14. continiue SQL Developer
Databse Developer
SQL Developer
XML Developer
PL/SQL Developer
Application Express (APEX) Developer.
Oracle Databse SQL Workshop I
Oracle Databse SQL Workshop II
Certification Exam Preparing Seminar : Oracle Databse SQL
Oracle Databse12C: For Data Werehousing
Oracle Databse 12c: SQL and PL?SQL New Fetures
oracle Databse 19C: PL?SQL Workshop
Managing Your PL/SQL Code
Certification Examp Prep Seminar: Program With Pl/SQL
Oracle Databse 11g: Program Whit PL/SQL (1z0-144)
Oracle Databse 12c R2: Advanced PL/SQL
Oracle Databse 11g: AdvancedPl/SQL
Oracle Database: Advanced PL/SQL (1z0-148)
Oracle Database 11g : Advanced PL/SQL Gold (Availabel only in japan) 1Z0-146
Oracle Application Express Workshop I
Oracle Application Express Workshop II
Oracle Application Express : Adminstration
Oracle Application Express18 : Developing Web Aplication (1Z0-750)

You might also like