You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tako Lee edited this page Feb 22, 2014
·
2 revisions
SQL statement is made up of different clauses. For example, SELECT statement consist of select list, from clause, where clause, group by and etc. Each clause has same structure like this:
<MAIN KEYWORD> [options] <arguments>
Take this select list for example:
SELECT top 10 name, department, location
SELECT is main keyword, top 10 is option, name, department, location is arguments.