select from table code example

Example 1: select database in sql

USE DatabaseName;

Example 2: 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 3: sql example query

SELECT * FROM users;

Example 4: how select from db

SELECT columname FROM tablename

Tags:

Sql Example