File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -220,9 +220,15 @@ or by a user with `DROP ANY SCHEMA` permission. If restoring a Firebird 6 or lat
220
220
### CREATE SCHEMA
221
221
222
222
``` sql
223
- {CREATE [IF NOT EXISTS] | CREATE OR ALTER | RECREATE} SCHEMA < schema name>
224
- [DEFAULT CHARACTER SET < character set name> ]
225
- [DEFAULT SQL SECURITY {DEFINER | INVOKER}]
223
+ CREATE SCHEMA [IF NOT EXISTS] < schema name>
224
+ [< create schema option> ...]
225
+
226
+ {CREATE OR ALTER SCHEMA | RECREATE} < schema name>
227
+ [< create schema option> ...]
228
+
229
+ < create schema option> ::=
230
+ DEFAULT CHARACTER SET < character set name>
231
+ | DEFAULT SQL SECURITY {DEFINER | INVOKER}
226
232
```
227
233
228
234
Schemas may have optional default character set and SQL security settings, which serve as the defaults for objects
You can’t perform that action at this time.
0 commit comments