The following code provides a breakdown of the basic SELECT statement on the Oracle platform: : Select « Select Query « Oracle PL / SQL






The following code provides a breakdown of the basic SELECT statement on the Oracle platform:

   

SELECT  [hint]
[ DISTINCT | ALL ]
<select_list>
FROM <table_reference>
[WHERE <condition>]
[START WITH <condition> CONNECT BY <condition>]
[GROUP BY <elements> ]
[HAVING <condition> ]
[ORDER BY <elements> ]
--

   
    
  








Related examples in the same category

1.Use Arithmetic operators with literal values to derive values: add 5 to salary
2.SELECT statement uses the not equal (< >) operator in the WHERE clause
3.Using the > operator
4.UPPER(SUBSTR(first_name, 2, 8)): Combining Functions
5.Plus in select statement
6.Minus in select
7.Math calculation in select
8.CONCATENATING TEXT
9.Returning All Columns
10.Returning Multiple Columns
11.Returning Rows Call
12.Employees from new york who have gifts
13.Find all employees who are younger than employee whose id is 9999
14.Selecting Categories That Contain Product
15.Selecting Products That Belong to Category
16.Selecting Products That Belong to Department with Join
17.Using select statement and char function to create insert statement