Reputation: 423
I've been searching for half an hour and can't find any resources stating what level of the SQL ANSI standard is supported on various database engines.
It looks like some level of support is provided by most engines, but I'd like to know exactly what level is officially supported.
I'm primarily interested in MySQL, PostgreSQL, SQL Server, and Oracle.
EDIT: PostgreSQL has a great page on compliance, exactly what I was looking for regarding the other engines: http://www.postgresql.org/docs/current/interactive/features.html
Upvotes: 28
Views: 18611
Reputation: 21318
According to the HSQLDB manual, it is the most standards compliant RDBMS.
Upvotes: 2
Reputation: 18408
The question of "which level of the standard" is too simple.
There are portions of the standard that are implemented by no engine at all, e.g. CREATE ASSERTION.
For that reason, it might be better to speak of "percentage of standard features supported" for each individual engine. But the vendors will be very reluctant to publish such measurements themselves.
Upvotes: 6
Reputation: 127521
The PostgreSQL manual has for all SQL statements a compatibility section.
Upvotes: 2
Reputation: 103707
these might help a little:
Comparison of different SQL implementations
wikipedia - Comparison of relational database management systems
wikipedia - SQL - Standardization
Upvotes: 17