Created
April 27, 2017 12:51
-
-
Save kohav/86697c482c578e6a1f99b2cefc824301 to your computer and use it in GitHub Desktop.
все из запросов
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
учись - главное знать все из запросов | |
<SELECT statement> ::= | |
[ WITH { [ XMLNAMESPACES ,] [ <common_table_expression> [,...n] ] } ] | |
<query_expression> | |
[ ORDER BY { order_by_expression | column_position [ ASC | DESC ] } | |
[ ,...n ] ] | |
[ <FOR Clause>] | |
[ OPTION ( <query_hint> [ ,...n ] ) ] | |
<query_expression> ::= | |
{ <query_specification> | ( <query_expression> ) } | |
[ { UNION [ ALL ] | EXCEPT | INTERSECT } | |
<query_specification> | ( <query_expression> ) [...n ] ] | |
<query_specification> ::= | |
SELECT [ ALL | DISTINCT ] | |
[TOP ( expression ) [PERCENT] [ WITH TIES ] ] | |
< select_list > | |
[ INTO new_table ] | |
[ FROM { <table_source> } [ ,...n ] ] | |
[ WHERE <search_condition> ] | |
[ <GROUP BY> ] | |
[ HAVING < search_condition > ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment