Where to find grammars for Postgres SQL syntax?

Started by
0 comments, last by GoDoG23 15 years, 6 months ago
The only SQL dialect I worked with before now was SQLite. SQLite nicely summarizes the syntax of each query by providing easy to read grammars. For example, DELETE: sql-statement ::=DELETE FROM [database-name .] table-name [WHERE expr] I was wondering if I could find something similar for Postgres SQL. -Thanks
Advertisement
SQL is a standart so almost every SQLite SQL statement is a Postgres valid statatemnt.

Postgres SQL commands

Postgres complete manual

This topic is closed to new replies.

Advertisement