~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/functions/string/other.rst

  • Committer: Lee Bieber
  • Date: 2011-02-24 03:20:47 UTC
  • mfrom: (2196.1.4 build)
  • Revision ID: kalebral@gmail.com-20110224032047-avmw06iwww3m73cw
Merge Andrew - 723653: Docs day first pass fixes 
Merge Brian - Puts back in support for COM_KILL, Also adds back in the INTERACTIVE flag, and creates a DD to track sessions/check on usage
Merge Olaf - Use List::size()

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
 
71
71
REPLACE(str,from_str,to_str)
72
72
 
73
 
For example: ::
 
73
For example:
 
74
 
 
75
.. code-block:: mysql
74
76
        
75
77
        SELECT REPLACE('wwww.google.com', 'w', 'v');
76
78
 
79
81
REVERSE()
80
82
---------
81
83
 
82
 
This function returns a string argument with the characters in reverse order. ::
 
84
This function returns a string argument with the characters in reverse order.
 
85
 
 
86
.. code-block:: mysql
83
87
 
84
88
        SELECT REVERSE('abcd');
85
89
 
108
112
 
109
113
Examples that use SUBSTRING() in the SELECT clause:
110
114
 
111
 
The SUBSTRING() function is used to extract a character string (using a given starting position and a given length). ::
 
115
The SUBSTRING() function is used to extract a character string (using a given starting position and a given length).
 
116
 
 
117
.. code-block:: mysql
112
118
 
113
119
        SELECT  
114
120
        SUBSTRING(course_designater,6,3) as 'Course number'                   
116
122
        WHERE course_designater LIKE 'Excel%' 
117
123
        LIMIT 10;    
118
124
 
119
 
You can also format a column using SUBSTRING() in combination with functions like LOWER() and UPPER(). ::
 
125
You can also format a column using SUBSTRING() in combination with functions like LOWER() and UPPER().
 
126
 
 
127
.. code-block:: mysql
120
128
 
121
129
        SELECT 
122
130
        CONCAT(UPPER(SUBSTRING(lastname,1,1)),