Database Engines and ANSI SQL Compliance

前端 未结 5 2042
执念已碎
执念已碎 2020-12-25 12:41

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 li

相关标签:
5条回答
  • 2020-12-25 13:22

    these might help a little:

    Comparison of different SQL implementations

    wikipedia - Comparison of relational database management systems

    wikipedia - SQL - Standardization

    0 讨论(0)
  • 2020-12-25 13:23

    According to the HSQLDB manual, it is the most standards compliant RDBMS.

    • Almost all syntactic features of SQL-92 up to Advanced Level are supported
    • SQL:2008 core and many optional features of this standard
    0 讨论(0)
  • 2020-12-25 13:29

    Firebird 3 sql standard conformance page

    0 讨论(0)
  • 2020-12-25 13:34

    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.

    0 讨论(0)
  • 2020-12-25 13:35

    The PostgreSQL manual has for all SQL statements a compatibility section.

    0 讨论(0)
提交回复
热议问题