12 lines
164 B
Text
12 lines
164 B
Text
SELECT CASE expression
|
|
CASE 1
|
|
'do stuff
|
|
CASE 2, 3
|
|
'do other stuff
|
|
CASE 3.1 TO 9.9
|
|
'do this
|
|
CASE IS >= 10
|
|
'do that
|
|
CASE ELSE
|
|
'default case
|
|
END SELECT
|