syntax sql select code example

Example 1: sql select syntax

select [all/distinct] <COL1>, <COL2>, <COL3>
from <TABLE_NAME>
[join <JOIN_CONDITION>]
[where <CONDITION>]
[group by <COLUMN_NAME>]
[having <SEARCH_CONDITION>]
[order by <SORT_SPECIFICATION>]


/*
Specifically for SQL -> Oracle

LEGEND: 
[...]   :   optional entries
<...>   :   your specific entry
*/

Example 2: sql select statement

Projection = Select the columns in
a table that are returned by a query
Selection = Selects the rows in a
table that are returned by a query
Join = Brings together data that is 
stored in different tables by
specifying the link between them

Example 3: SQL SELECT

Mit SELECT können Daten aus der Datenbank abgefragt werden. Es ist die am 
meissten verbreitete Art.

  SELECT name
  FROM country
  WHERE region = (
      SELECT region
      FROM country
      WHERE name = 'Brasilien'
      )

Tags:

Css Example