~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/functions/control_flow.rst

  • Committer: Mark Atwood
  • Date: 2011-09-15 18:02:16 UTC
  • mfrom: (2414.4.1 fix-docs)
  • Revision ID: me@mark.atwood.name-20110915180216-97786ocxt34dc7ne
mergeĀ lp:~vjsamuel/drizzle/fix-bug-850898

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