~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/functions/control_flow.rst

  • Committer: vjsamuel1990 at gmail
  • Date: 2011-09-15 13:23:48 UTC
  • mto: This revision was merged to the branch mainline in revision 2419.
  • Revision ID: vjsamuel1990@gmail.com-20110915132348-378a34nacx898lx7
Merge fix for bug #850898 and doc style fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
IFNULL
50
50
-------
51
51
 
52
 
Given IFNULL(arg1,arg2), if arg1 is not NULL, IFNULL() returns arg1; it otherwise returns arg2. IFNULL() returns a numeric or string value, depending on how it's used. ::
 
52
Given IFNULL(arg1,arg2), if arg1 is not NULL, IFNULL() returns arg1; it otherwise returns arg2. IFNULL() returns a numeric or string value, depending on how it's used.
53
53
 
54
54
.. code-block:: mysql
55
55
 
68
68
NULLIF
69
69
-------
70
70
 
71
 
NULLIF(arg1,arg2) returns NULL if arg1 = arg2 is true, otherwise returns arg1. ::
 
71
NULLIF(arg1,arg2) returns NULL if arg1 = arg2 is true, otherwise returns arg1.
72
72
 
73
73
.. code-block:: mysql
74
74
 
75
75
        SELECT NULLIF(1,1);
76
 
        -> NULL
 
76
        -> NULL
77
77
 
78
78
        SELECT NULLIF(1,2);
79
79
        -> 1
 
80