返回介绍

I. 教程

II. SQL 语言

III. 服务器管理

IV. 客户端接口

V. 服务器端编程

VI. 参考手册

VII. 内部

VIII. 附录

D.1. 支持的特性

发布于 2019-09-30 03:14:03 字数 20929 浏览 942 评论 0 收藏 0

标识符描述注释
B012Embedded C
B021Direct SQL
E011核心Numeric data types
E011-01核心INTEGER and SMALLINT data types
E011-02核心REAL, DOUBLE PRECISION, and FLOAT data types
E011-03核心DECIMAL and NUMERIC data types
E011-04核心Arithmetic operators
E011-05核心Numeric comparison
E011-06核心Implicit casting among the numeric data types
E021核心Character data types
E021-01核心CHARACTER data type
E021-02核心CHARACTER VARYING data type
E021-03核心Character literals
E021-04核心CHARACTER_LENGTH functiontrims trailing spaces from CHARACTER values before counting
E021-05核心OCTET_LENGTH function
E021-06核心SUBSTRING function
E021-07核心Character concatenation
E021-08核心UPPER and LOWER functions
E021-09核心TRIM function
E021-10核心Implicit casting among the character string types
E021-11核心POSITION function
E021-12核心Character comparison
E031核心Identifiers
E031-01核心Delimited identifiers
E031-02核心Lower case identifiers
E031-03核心Trailing underscore
E051核心Basic query specification
E051-01核心SELECT DISTINCT
E051-02核心GROUP BY clause
E051-04核心GROUP BY can contain columns not in <select list>
E051-05核心Select list items can be renamedAS is required
E051-06核心HAVING clause
E051-07核心Qualified * in select list
E051-08核心Correlation names in the FROM clause
E051-09核心Rename columns in the FROM clause
E061核心Basic predicates and search conditions
E061-01核心Comparison predicate
E061-02核心BETWEEN predicate
E061-03核心IN predicate with list of values
E061-04核心LIKE predicate
E061-05核心LIKE predicate ESCAPE clause
E061-06核心NULL predicate
E061-07核心Quantified comparison predicate
E061-08核心EXISTS predicate
E061-09核心Subqueries in comparison predicate
E061-11核心Subqueries in IN predicate
E061-12核心Subqueries in quantified comparison predicate
E061-13核心Correlated subqueries
E061-14核心Search condition
E071核心Basic query expressions
E071-01核心UNION DISTINCT table operator
E071-02核心UNION ALL table operator
E071-03核心EXCEPT DISTINCT table operator
E071-05核心Columns combined via table operators need not have exactly the same data type
E071-06核心Table operators in subqueries
E081-01核心SELECT privilege
E081-02核心DELETE privilege
E081-03核心INSERT privilege at the table level
E081-04核心UPDATE privilege at the table level
E081-06核心REFERENCES privilege at the table level
E081-08核心WITH GRANT OPTION
E081-10核心EXECUTE privilege
E091核心Set functions
E091-01核心AVG
E091-02核心COUNT
E091-03核心MAX
E091-04核心MIN
E091-05核心SUM
E091-06核心ALL quantifier
E091-07核心DISTINCT quantifier
E101核心Basic data manipulation
E101-01核心INSERT statement
E101-03核心Searched UPDATE statement
E101-04核心Searched DELETE statement
E111核心Single row SELECT statement
E121-01核心DECLARE CURSOR
E121-02核心ORDER BY columns need not be in select list
E121-03核心Value expressions in ORDER BY clause
E121-04核心OPEN statement
E121-08核心CLOSE statement
E121-10核心FETCH statement implicit NEXT
E121-17核心WITH HOLD cursors
E131核心Null value support (nulls in lieu of values)
E141核心Basic integrity constraints
E141-01核心NOT NULL constraints
E141-02核心UNIQUE constraints of NOT NULL columns
E141-03核心PRIMARY KEY constraints
E141-04核心Basic FOREIGN KEY constraint with the NO ACTION default for both referential delete action and referential update action
E141-06核心CHECK constraints
E141-07核心Column defaults
E141-08核心NOT NULL inferred on PRIMARY KEY
E141-10核心Names in a foreign key can be specified in any order
E151核心Transaction support
E151-01核心COMMIT statement
E151-02核心ROLLBACK statement
E152核心Basic SET TRANSACTION statement
E152-01核心SET TRANSACTION statement: ISOLATION LEVEL SERIALIZABLE clause
E152-02核心SET TRANSACTION statement: READ ONLY and READ WRITE clauses
E161核心SQL comments using leading double minus
E171核心SQLSTATE support
F021核心Basic information schema
F021-01核心COLUMNS view
F021-02核心TABLES view
F021-03核心VIEWS view
F021-04核心TABLE_CONSTRAINTS view
F021-05核心REFERENTIAL_CONSTRAINTS view
F021-06核心CHECK_CONSTRAINTS view
F031核心Basic schema manipulation
F031-01核心CREATE TABLE statement to create persistent base tables
F031-02核心CREATE VIEW statement
F031-03核心GRANT statement
F031-04核心ALTER TABLE statement: ADD COLUMN clause
F031-13核心DROP TABLE statement: RESTRICT clause
F031-16核心DROP VIEW statement: RESTRICT clause
F031-19核心REVOKE statement: RESTRICT clause
F032CASCADE drop behavior
F033ALTER TABLE statement: DROP COLUMN clause
F034Extended REVOKE statement
F034-01REVOKE statement performed by other than the owner of a schema object
F034-02REVOKE statement: GRANT OPTION FOR clause
F034-03REVOKE statement to revoke a privilege that the grantee has WITH GRANT OPTION
F041核心Basic joined table
F041-01核心Inner join (but not necessarily the INNER keyword)
F041-02核心INNER keyword
F041-03核心LEFT OUTER JOIN
F041-04核心RIGHT OUTER JOIN
F041-05核心Outer joins can be nested
F041-07核心The inner table in a left or right outer join can also be used in an inner join
F041-08核心All comparison operators are supported (rather than just =)
F051核心Basic date and time
F051-01核心DATE data type (including support of DATE literal)
F051-02核心TIME data type (including support of TIME literal) with fractional seconds precision of at least 0
F051-03核心TIMESTAMP data type (including support of TIMESTAMP literal) with fractional seconds precision of at least 0 and 6
F051-04核心Comparison predicate on DATE, TIME, and TIMESTAMP data types
F051-05核心Explicit CAST between datetime types and character string types
F051-06核心CURRENT_DATE
F051-07核心LOCALTIME
F051-08核心LOCALTIMESTAMP
F052增强日期时间设施Intervals and datetime arithmetic
F053OVERLAPS predicate
F081核心UNION and EXCEPT in views
F111Isolation levels other than SERIALIZABLE
F111-01READ UNCOMMITTED isolation level
F111-02READ COMMITTED isolation level
F111-03REPEATABLE READ isolation level
F131核心Grouped operations
F131-01核心WHERE, GROUP BY, and HAVING clauses supported in queries with grouped views
F131-02核心Multiple tables supported in queries with grouped views
F131-03核心Set functions supported in queries with grouped views
F131-04核心Subqueries with GROUP BY and HAVING clauses and grouped views
F131-05核心Single row SELECT with GROUP BY and HAVING clauses and grouped views
F171Multiple schemas per user
F191增强完整性管理Referential delete actions
F201核心CAST function
F221核心Explicit defaults
F222INSERT statement: DEFAULT VALUES clause
F231Privilege tables
F231-01TABLE_PRIVILEGES view
F231-02COLUMN_PRIVILEGES view
F231-03USAGE_PRIVILEGES view
F251Domain support
F261核心CASE expression
F261-01核心Simple CASE
F261-02核心Searched CASE
F261-03核心NULLIF
F261-04核心COALESCE
F271Compound character literals
F281LIKE enhancements
F302INTERSECT table operator
F302-01INTERSECT DISTINCT table operator
F302-02INTERSECT ALL table operator
F304EXCEPT ALL table operator
F311-01核心CREATE SCHEMA
F311-02核心CREATE TABLE for persistent base tables
F311-03核心CREATE VIEW
F311-05核心GRANT statement
F321User authorization
F361Subprogram support
F381Extended schema manipulation
F381-01ALTER TABLE statement: ALTER COLUMN clause
F381-02ALTER TABLE statement: ADD CONSTRAINT clause
F381-03ALTER TABLE statement: DROP CONSTRAINT clause
F391Long identifiers
F401Extended joined table
F401-01NATURAL JOIN
F401-02FULL OUTER JOIN
F401-04CROSS JOIN
F411增强日期时间设施Time zone specificationdifferences regarding literal interpretation
F421National character
F431Read-only scrollable cursors
F431-01FETCH with explicit NEXT
F431-02FETCH FIRST
F431-03FETCH LAST
F431-04FETCH PRIOR
F431-05FETCH ABSOLUTE
F431-06FETCH RELATIVE
F441Extended set function support
F471核心Scalar subquery values
F481核心Expanded NULL predicate
F491增强完整性管理Constraint management
F501核心Features and conformance views
F501-01核心SQL_FEATURES view
F501-02核心SQL_SIZING view
F501-03核心SQL_LANGUAGES view
F502Enhanced documentation tables
F502-01SQL_SIZING_PROFILES view
F502-02SQL_IMPLEMENTATION_INFO view
F502-03SQL_PACKAGES view
F531Temporary tables
F555增强日期时间设施Enhanced seconds precision
F561Full value expressions
F571Truth value tests
F591Derived tables
F611Indicator data types
F651Catalog name qualifiers
F672Retrospective check constraints
F701增强完整性管理Referential update actions
F711ALTER domain
F761Session management
F771Connection management
F781Self-referencing operations
F791Insensitive cursors
F801Full set function
S071增强的对象支持SQL paths in function and type name resolution
S111增强的对象支持ONLY in query expressions
S211增强的对象支持User-defined cast functions
T031BOOLEAN data type
T071BIGINT data type
T141SIMILAR predicate
T151DISTINCT predicate
T171LIKE clause in table definition
T191增强完整性管理Referential action RESTRICT
T201增强完整性管理Comparable data types for referential constraints
T211-01激活数据库,增强完整性管理Triggers activated on UPDATE, INSERT, or DELETE of one base table
T211-02激活数据库,增强完整性管理BEFORE triggers
T211-03激活数据库,增强完整性管理AFTER triggers
T211-04激活数据库,增强完整性管理FOR EACH ROW triggers
T211-07激活数据库,增强完整性管理TRIGGER privilege
T212增强完整性管理Enhanced trigger capability
T231Sensitive cursors
T241START TRANSACTION statement
T271Savepoints
T312OVERLAY function
T321-01核心User-defined functions with no overloading
T321-03核心Function invocation
T321-06核心ROUTINES view
T321-07核心PARAMETERS view
T322PSMOverloading of SQL-invoked functions and procedures
T323Explicit security for external routines
T351Bracketed SQL comments (/*...*/ comments)
T441ABS and MOD functions
T461Symmetric BETWEEN predicate
T501Enhanced EXISTS predicate
T551Optional key words for default syntax
T581Regular expression substring function
T591UNIQUE constraints of possibly null columns

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文