Hi, I will explain SQL WHERE Clause in Oracle SQL in this post of Oracle SQL Tutorial series.
Read More »Tag Archives: sql order by
Oracle SQL Tutorials – Chapter 5
Chapter 5 – Selecting Data From Multiple Tables Usage of multiple tables in one query Combining tables – JOIN Different Types of SQL Join Left Outer Join Right Outer Join …
Read More »Oracle SQL Tutorials – Chapter 4
Chapter 4 – Group Functions AVG Function SUM Function MIN Function MAX Function COUNT Function DISTINCT Function GROUP BY Statement HAVING Statement One row functions can be applied to …
Read More »Oracle SQL Tutorials – Chapter 3 (Part 3 of 3)
CONVERSION FUNCTIONS TO_CHAR (DATE) TO_CHAR(date, ‘format’) It’s case-sensitive and must be written between quotes. It must contain a valid date format. Let’s list the hire dates of employees like below. …
Read More »Oracle SQL Tutorials – Chapter 3 (Part 2 of 3)
NUMERIC FUNCTIONS ROUND Let’s try some different usages of the ROUND function. SELECT ROUND (45.923), ROUND (45.943, 1), ROUND (45.924, 2), ROUND (44.923, -1), ROUND (55.923, -2) FROM DUAL; …
Read More »Oracle SQL Tutorials – Chapter 3 (Part 1 of 3)
Chapter 3 – Single Row Functions Charcter Functions Numeric Functions Date Functions Converting Functions NVL Function Decode Function CASE Statement SQL FUNCTIONS SQL Functions can be classiifed under 2 …
Read More »Oracle SQL Tutorials – Chapter 2 (Part 3 of 3)
OPERATOR PRECEDENCE Let’s list the employees which JOB_ID is SA_REP or AD_PRES , and have salary more than 15000. SELECT first_name,last_name, job_id, salary FROM hr.employees WHERE job_id = 'SA_REP‘ …
Read More »