-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsql-2011-psm-grammar.txt
590 lines (392 loc) · 11.6 KB
/
sql-2011-psm-grammar.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
5 Lexical elements
This Clause modifies Clause 5, "Lexical elements", in ISO/IEC 9075-2.
5.1 <token> and <separator>
Function
Specify lexical units (tokens and separators) that participate in SQL language.
Format
<non-reserved word> ::=
!! All alternatives from ISO/IEC 9075-2
| CONDITION_IDENTIFIER
| EXIT
| STACKED
| UNDO
<reserved word> ::=
!! All alternatives from ISO/IEC 9075-2
| DO
| ELSEIF
| HANDLER
| IF | ITERATE
| LEAVE | LOOP
| REPEAT | RESIGNAL
| SIGNAL
| UNTIL
| WHILE
5.2 Names and identifiers
Function
Specify names.
Format
<SQL-server module name> ::=
<schema qualified name>
<SQL variable name> ::=
<identifier>
<condition name> ::=
<identifier>
6 Scalar expressions
6.1 <value specification> and <target specification>
Function
Specify one or more values, host parameters, SQL parameters, dynamic parameters, host variables, or SQL
variables.
Format
<general value specification> ::=
!! All alternatives from ISO/IEC 9075-2
| <SQL variable reference>
<simple value specification> ::=
!! All alternatives from ISO/IEC 9075-2
| <SQL variable reference>
<target specification> ::=
!! All alternatives from ISO/IEC 9075-2
| <SQL variable reference>
<simple target specification> ::=
!! All alternatives from ISO/IEC 9075-2
| <SQL variable reference>
<target array reference> ::=
!! All alternatives from ISO/IEC 9075-2
| <SQL variable reference>
6.4 <SQL variable reference>
Function
Reference an SQL variable.
Format
<SQL variable reference> ::=
<basic identifier chain>
8 Persistent Stored Modules (SQL/PSM)
8.2 <sqlstate value>
Function
Specify an SQLSTATE value.
Format
<sqlstate value> ::=
SQLSTATE [ VALUE ] <character string literal>
9 Schema definition and manipulation
9.1 <schema definition>
Function
Define a schema.
Format
<schema element> ::=
!! All alternatives from ISO/IEC 9075-2
| <SQL-server module definition>
9.19 <trigger definition>
Function
Defined triggered SQL-statements.
Format
<triggered SQL statement> ::=
<SQL procedure statement>
NOTE 12 - The preceding production defining <triggered SQL statement> completely supersedes the definition in [ISO9075-2].
9.21 <SQL-server module definition>
Function
Define an SQL-server module.
Format
<SQL-server module definition> ::=
CREATE MODULE <SQL-server module name>
[ <SQL-server module character set specification> ]
[ <SQL-server module schema clause> ]
[ <SQL-server module path specification> ]
[ <temporary table declaration>... ]
<SQL-server module contents>...
END MODULE
<SQL-server module character set specification> ::=
NAMES ARE <character set specification>
<SQL-server module schema clause> ::=
SCHEMA <default schema name>
<default schema name> ::=
<schema name>
<SQL-server module path specification> ::=
<path specification>
<SQL-server module contents> ::=
<SQL-invoked routine> <semicolon>
9.22 <drop module statement>
Function
Destroy an SQL-server module.
Format
<drop module statement> ::=
DROP MODULE <SQL-server module name> <drop behavior>
9.24 <SQL-invoked routine>
Function
Define an SQL-invoked routine.
Format
<SQL-invoked routine> ::=
!! All alternatives from ISO/IEC 9075-2
| <module routine>
<module routine> ::=
<module procedure>
| <module function>
<module procedure> ::=
[ DECLARE ] <SQL-invoked procedure>
<module function> ::=
[ DECLARE ] <SQL-invoked function>
10 Access control
10.2 <privileges>
This Subclause modifies Subclause 12.3, "<privileges>", in ISO/IEC 9075-2.
Function
Specify privileges.
Format
<object name> ::=
!! All alternatives from ISO/IEC 9075-2
| MODULE <SQL-server module name>
11 SQL-client modules
11.2 <SQL procedure statement>
Function
Define all of the SQL-statements that are <SQL procedure statement>s.
Format
<SQL schema definition statement> ::=
!! All alternatives from ISO/IEC 9075-2
| <SQL-server module definition>
<SQL schema manipulation statement> ::=
!! All alternatives from ISO/IEC 9075-2
| <drop module statement>
<SQL control statement> ::=
!! All alternatives from ISO/IEC 9075-2
| <assignment statement>
| <compound statement>
| <case statement>
| <if statement>
| <iterate statement>
| <leave statement>
| <loop statement>
| <while statement>
| <repeat statement>
| <for statement>
<SQL diagnostics statement> ::=
!! All alternatives from ISO/IEC 9075-2
| <signal statement>
| <resignal statement>
14 Control statements
14.1 <compound statement>
Function
Specify a statement that groups other statements together.
Format
<compound statement> ::=
[ <beginning label> <colon> ] BEGIN [ [ NOT ] ATOMIC ]
[ <local declaration list> ] [ <local cursor declaration list> ]
[ <local handler declaration list> ]
[ <SQL statement list> ]
END [ <ending label> ]
<beginning label> ::=
<statement label>
<ending label> ::=
<statement label>
<statement label> ::=
<identifier>
<local declaration list> ::=
<terminated local declaration>...
<terminated local declaration> ::=
<local declaration> <semicolon>
<local declaration> ::=
<SQL variable declaration>
| <condition declaration>
<local cursor declaration list> ::=
<terminated local cursor declaration>...
<terminated local cursor declaration> ::=
<declare cursor> <semicolon>
<local handler declaration list> ::=
<terminated local handler declaration>...
<terminated local handler declaration> ::=
<handler declaration> <semicolon>
<SQL statement list> ::=
<terminated SQL statement>...
<terminated SQL statement> ::=
<SQL procedure statement> <semicolon>
14.2 <handler declaration>
Function
Associate a handler with exception or completion conditions to be handled in a module or compound statement.
Format
<handler declaration> ::=
DECLARE <handler type> HANDLER FOR <condition value list> <handler action>
<handler type> ::=
CONTINUE
| EXIT
| UNDO
<handler action> ::=
<SQL procedure statement>
<condition value list> ::=
<condition value> [ { <comma> <condition value> }... ]
<condition value> ::=
<sqlstate value>
| <condition name>
| SQLEXCEPTION
| SQLWARNING
| NOT FOUND
14.3 <condition declaration>
Function
Declare a condition name and an optional corresponding SQLSTATE value.
Format
<condition declaration> ::=
DECLARE <condition name> CONDITION [ FOR <sqlstate value> ]
14.4 <SQL variable declaration>
Function
Declare one or more variables.
Format
<SQL variable declaration> ::=
DECLARE <SQL variable name list> <data type> [ <default clause> ]
<SQL variable name list> ::=
<SQL variable name> [ { <comma> <SQL variable name> }... ]
14.5 <assignment statement>
Function
Assign a value to an SQL variable, SQL parameter, host parameter, or host variable.
Format
<assignment statement> ::=
<singleton variable assignment>
| <multiple variable assignment>
<multiple variable assignment> ::=
SET <assignment target list> <equals operator> <assigned row>
<assignment target list> ::=
<left paren> <assignment target> [ { <comma> <assignment target> }... ] <right paren>
<singleton variable assignment> ::=
SET <assignment target> <equals operator> <assignment source>
<assignment target> ::=
<target specification>
| <modified field reference>
| <mutator reference>
<assignment source> ::=
<value expression>
| <contextually typed source>
<contextually typed source> ::=
<implicitly typed value specification>
| <contextually typed row value expression>
<modified field reference> ::=
<modified field target> <period> <field name>
<modified field target> ::=
<target specification>
| <left paren> <target specification> <right paren>
| <modified field reference>
<mutator reference> ::=
<mutated target specification> <period> <method name>
<mutated target specification> ::=
<target specification>
| <left paren> <target specification> <right paren>
| <mutator reference>
14.6 <case statement>
Function
Provide conditional execution based on truth of <search condition>s or on equality of operands.
Format
<case statement> ::=
<simple case statement>
| <searched case statement>
<simple case statement> ::=
CASE <case operand>
<simple case statement when clause>...
[ <case statement else clause> ]
END CASE
<searched case statement> ::=
CASE <searched case statement when clause>...
[ <case statement else clause> ]
END CASE
<simple case statement when clause> ::=
WHEN <when operand list>
THEN <SQL statement list>
<searched case statement when clause> ::=
WHEN <search condition>
THEN <SQL statement list>
<case statement else clause> ::=
ELSE <SQL statement list>
14.7 <if statement>
Function
Provide conditional execution based on the truth value of a condition.
Format
<if statement> ::=
IF <search condition>
<if statement then clause>
[ <if statement elseif clause>... ]
[ <if statement else clause> ]
END IF
<if statement then clause> ::=
THEN <SQL statement list>
<if statement elseif clause> ::=
ELSEIF <search condition> THEN <SQL statement list>
<if statement else clause> ::=
ELSE <SQL statement list>
14.8 <iterate statement>
Function
Terminate the execution of an iteration of an iterated SQL-statement.
Format
<iterate statement> ::=
ITERATE <statement label>
14.9 <leave statement>
Function
Continue execution by leaving a labeled statement.
Format
<leave statement> ::=
LEAVE <statement label>
14.10 <loop statement>
Function
Repeat the execution of a statement.
Format
<loop statement> ::=
[ <beginning label> <colon> ]
LOOP
<SQL statement list>
END LOOP [ <ending label> ]
14.11 <while statement>
Function
While a specified condition is True, repeat the execution of a statement.
Format
<while statement> ::=
[ <beginning label> <colon> ]
WHILE <search condition> DO
<SQL statement list>
END WHILE [ <ending label> ]
14.12 <repeat statement>
Function
Repeat the execution of a statement.
Format
<repeat statement> ::=
[ <beginning label> <colon> ]
REPEAT
<SQL statement list>
UNTIL <search condition>
END REPEAT [ <ending label> ]
14.13 <for statement>
Function
Execute a statement for each row of a table.
Format
<for statement> ::=
[ <beginning label> <colon> ]
FOR [ <for loop variable name> AS ]
[ <cursor name> [ <cursor sensitivity> ] CURSOR FOR ]
<cursor specification>
DO <SQL statement list>
END FOR [ <ending label> ]
<for loop variable name> ::=
<identifier>
17 Diagnostics management
17.1 <get diagnostics statement>
Function
Get exception or completion condition information from the diagnostics area.
Format
<get diagnostics statement> ::=
GET [ <which area> ] DIAGNOSTICS <SQL diagnostics information>
<which area> ::=
CURRENT
| STACKED
<condition information item name> ::=
!! All alternatives from [ISO9075-2]
| CONDITION_IDENTIFIER
17.2 <signal statement>
Function
Signal an exception condition.
Format
<signal statement> ::=
SIGNAL <signal value> [ <set signal information> ]
<signal value> ::=
<condition name>
| <sqlstate value>
<set signal information> ::=
SET <signal information item list>
<signal information item list> ::=
<signal information item> [ { <comma> <signal information item> }... ]
<signal information item> ::=
<condition information item name> <equals operator> <simple value specification>
17.3 <resignal statement>
Function
Resignal an exception condition.
Format
<resignal statement> ::=
RESIGNAL [ <signal value> ] [ <set signal information> ]