~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2011-09-13 19:54:55 UTC
  • mfrom: (2397.1.3 plugin-docs)
  • Revision ID: me@mark.atwood.name-20110913195455-3bk3locm85m4jimp
mergeĀ lp:~daniel-nichter/drizzle/plugin-docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
String Modification Functions
2
2
=============================
3
3
 
 
4
.. _concat-function:
 
5
 
4
6
CONCAT
5
7
------
6
8
 
35
37
 
36
38
Returns: '14.8'
37
39
 
 
40
.. _concat-ws-function:
 
41
 
38
42
CONCAT_WS
39
43
---------
40
44
CONCAT WS (With Separator) [1]_ allows you to specify that the first argument is treated as a separator for the rest of the arguments. This argument is added between the strings to be concatenated.
57
61
 
58
62
Returns: 'First name, Last Name'
59
63
 
 
64
.. _trim-function:
60
65
 
61
 
TRIM()
62
 
------
 
66
TRIM
 
67
----
63
68
 
64
69
The TRIM function remove specified prefixes or suffixes from a string (typically leading and trailing spaces), and returns the resulting string. If none of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is assumed.
65
70
 
69
74
 
70
75
[remstr] is optional (if it's not specified, spaces are removed).
71
76
 
72
 
LTRIM()
73
 
-------
 
77
.. _ltrim-function:
 
78
 
 
79
LTRIM
 
80
-----
74
81
 
75
82
This version of the TRIM function removes leading spaces from the beginning of a string.
76
83
 
 
84
.. _rtrim-function:
77
85
 
78
 
RTRIM()
79
 
-------
 
86
RTRIM
 
87
-----
80
88
 
81
89
This version of the TRIM function removes trailing spaces from the end of a function. 
82
90