提交 5f720638 authored 作者: Thomas Mueller's avatar Thomas Mueller

H2 Console: The autocomplete feature has been improved a bit.

上级 b43f5638
...@@ -440,8 +440,9 @@ CREATE SCHEMA [IF NOT EXISTS] name ...@@ -440,8 +440,9 @@ CREATE SCHEMA [IF NOT EXISTS] name
[AUTHORIZATION ownerUserName] [AUTHORIZATION ownerUserName]
"," ","
Creates a new schema. Creates a new schema.
The current user owner must have admin rights. If no owner is specified, the current user is used.
If no authorization is specified, the current user is used. The user that executes the command must have admin rights,
as well as the owner.
"," ","
CREATE SCHEMA TEST_SCHEMA AUTHORIZATION SA CREATE SCHEMA TEST_SCHEMA AUTHORIZATION SA
" "
...@@ -1273,8 +1274,8 @@ PRIMARY KEY(ID, NAME) ...@@ -1273,8 +1274,8 @@ PRIMARY KEY(ID, NAME)
"Other Grammar","Referential Constraint"," "Other Grammar","Referential Constraint","
FOREIGN KEY (columnName [,...]) FOREIGN KEY (columnName [,...])
REFERENCES [refTableName] [(refColumnName[,...])] REFERENCES [refTableName] [(refColumnName[,...])]
[ON DELETE {CASCADE | RESTRICT | NO ACTION | SET DEFAULT | SET NULL}] [ON DELETE {CASCADE | RESTRICT | NO ACTION | SET {DEFAULT|NULL}}]
[ON UPDATE {CASCADE | SET DEFAULT | SET NULL}] [ON UPDATE {CASCADE | SET {DEFAULT|NULL}}]
"," ","
Defines a referential constraint. Defines a referential constraint.
If the table name is not specified, then the same table is referenced. If the table name is not specified, then the same table is referenced.
...@@ -1360,7 +1361,7 @@ LIKE 'Jo%' ...@@ -1360,7 +1361,7 @@ LIKE 'Jo%'
" "
"Other Grammar","Compare"," "Other Grammar","Compare","
= | < | > | <> | <= | >= | != <> | <= | >= | = | < | > | !=
"," ","
Comparison operator. The operator != is the same as <>. Comparison operator. The operator != is the same as <>.
"," ","
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论