SELECT sql code example
Example 1: sql selet
SELECT *
FROM table
WHERE condition
GROUP BY expression
HAVING condition
{ UNION | INTERSECT | EXCEPT }
ORDER BY expression
LIMIT count
OFFSET start
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>]
Example 3: sql select
SELECT * FROM TABLE_NAME;
Example 4: between sql
syntax->SELECT column_name(s)
FROM table_name
WHERE column_name
BETWEEN value1 AND value2
SELECT * FROM Persons
WHERE LastName
BETWEEN 'Hansen' AND 'Pettersen'
Example 5: how select from db
SELECT columname FROM tablename
Example 6: return columns from table sql
SELECT *
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = N'Customers'