~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/functions/control_flow.rst

  • Committer: Marisa Plumb
  • Date: 2011-03-12 16:21:40 UTC
  • mto: (2235.2.4 build)
  • mto: This revision was merged to the branch mainline in revision 2237.
  • Revision ID: marisa.plumb@gmail.com-20110312162140-k76o00neop1tys4o
markup fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
This type of control flow function checks IF a condition is satisfied (i.e. the Boolean expression returns TRUE), the IF SQL statement will execute. IF the condition is not satisfied (i.e. the Boolean expression returns FALSE), the ELSE SQL statement is executed.
36
36
 
37
 
Syntax for IF�ELSE: ::
 
37
Syntax for IF/ELSE: ::
38
38
 
39
39
        IF ( Boolean_expression ) 
40
40
        BEGIN