Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
IF condition
|
||||
-> if condition is true...
|
||||
ELSEIF condition2
|
||||
-> else if condition2 is true...
|
||||
ELSE
|
||||
-> if all other conditions are not true...
|
||||
ENDIF
|
||||
|
|
@ -0,0 +1 @@
|
|||
IF condition THEN statement
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
DEF c
|
||||
c := IF condition THEN 78 ELSE 19
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
SELECT var
|
||||
CASE n1
|
||||
-> code
|
||||
CASE n2
|
||||
-> code
|
||||
DEFAULT
|
||||
-> no one of the previous case...
|
||||
ENDSELECT
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
SELECT max_possible_value OF var
|
||||
CASE n1
|
||||
-> code
|
||||
CASE n2 TO n3, n4
|
||||
-> more
|
||||
CASE n5 TO n6, n7 TO n8
|
||||
-> more...
|
||||
DEFAULT
|
||||
-> none of previous ones
|
||||
ENDSELECT
|
||||
Loading…
Add table
Add a link
Reference in a new issue