tags:

views:

433

answers:

9

Is there a comprehensive online reference listing all standard SQL keywords / functions? (More helpful if they are listed together and not spread about a site.)

A: 

This is the Microsoft reference (for T-SQL):

http://msdn.microsoft.com/en-us/library/aa238507(SQL.80).aspx

Ty
Note that link is for SQL Server 2000, but you can reach similar pages for 2005 and 2008 through the tree on the left (if it's not visible, click on the body of the page and press T).
Dave DuPlantis
+1  A: 

w3schools is probably a pretty good shout.

more specifically you can refer to the RDBMS manual itself which will probably detail how to use every supported feature.

Can you provide a link for that w3schools page?
DOK
http://www.w3schools.com/sql/
John
A: 

Hyperlinked BNF Grammar ?

toolkit
A: 

Check this for all the reserved words for ANSI SQL standards.

carson
A: 

try these lists: http://developer.mimer.com/validator/sql-reserved-words.tml

devio
+1  A: 

Here's a list of all the reserved SQL words, but I also found this SQL Reserved Words Checker tool to be interesting..

Bill the Lizard
A: 

You can find Oracle 10g reserved words here. The table of contents also lists all functions.

Dave DuPlantis
A: 

SQL Quick Reference From W3Schools

kristof
A: 

The PostgreSQL's list (also contains the lists from SQL-92, SQL:1999 and SQL:2003 standards).

Milen A. Radev