~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

mergeĀ lp:~linuxjedi/drizzle/trunk-remove-drizzleadmin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Other String Functions
 
2
======================
 
3
 
 
4
LOAD_FILE()
 
5
-----------
 
6
 
 
7
Load the named file
 
8
 
 
9
ELT()
 
10
-----
 
11
 
 
12
Return string at index number
 
13
 
 
14
EXPORT_SET()
 
15
------------
 
16
 
 
17
Return a string
 
18
 
 
19
FORMAT()
 
20
--------
 
21
 
 
22
Return a number formatted to specified number of decimal places
 
23
 
 
24
LOAD_FILE()
 
25
-----------
 
26
 
 
27
Load the named file
 
28
 
 
29
LPAD()
 
30
-------
 
31
 
 
32
Return the string argument, left-padded with the specified string
 
33
 
 
34
MAKE_SET()
 
35
----------
 
36
 
 
37
Return a set of comma-separated strings that have the corresponding bit in bits set
 
38
 
 
39
MATCH()
 
40
-------
 
41
 
 
42
Perform full-text search
 
43
 
 
44
MID()
 
45
-----
 
46
 
 
47
Return a substring starting from the specified position
 
48
 
 
49
ORD()
 
50
-----
 
51
 
 
52
Return character code for leftmost character of the argument
 
53
 
 
54
QUOTE()
 
55
-------
 
56
 
 
57
Escape the argument for use in an SQL statement
 
58
 
 
59
REPEAT()
 
60
--------
 
61
 
 
62
Repeat a string the specified number of times
 
63
 
 
64
REPLACE()
 
65
---------
 
66
 
 
67
The REPLACE() function returns a string with all occurrences of the 'from_str' replaced by 'to_str'. REPLACE is case-sensitive when searching for 'from_str'.
 
68
 
 
69
Syntax:
 
70
 
 
71
REPLACE(str,from_str,to_str)
 
72
 
 
73
For example:
 
74
 
 
75
.. code-block:: mysql
 
76
        
 
77
        SELECT REPLACE('wwww.google.com', 'w', 'v');
 
78
 
 
79
Returns: vvv.google.com
 
80
 
 
81
REVERSE()
 
82
---------
 
83
 
 
84
This function returns a string argument with the characters in reverse order.
 
85
 
 
86
.. code-block:: mysql
 
87
 
 
88
        SELECT REVERSE('abcd');
 
89
 
 
90
Returns: dcba
 
91
 
 
92
RIGHT()
 
93
-------
 
94
 
 
95
Return the specified rightmost number of characters
 
96
 
 
97
RPAD()
 
98
------
 
99
 
 
100
Append string the specified number of times
 
101
 
 
102
SOUNDEX()
 
103
---------
 
104
 
 
105
Return a soundex string
 
106
 
 
107
 
 
108
SUBSTRING()
 
109
-----------
 
110
 
 
111
Returns the substring as specified
 
112
 
 
113
Examples that use SUBSTRING() in the SELECT clause:
 
114
 
 
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
 
118
 
 
119
        SELECT  
 
120
        SUBSTRING(course_designater,6,3) as 'Course number'                   
 
121
        FROM Courses
 
122
        WHERE course_designater LIKE 'Excel%' 
 
123
        LIMIT 10;    
 
124
 
 
125
You can also format a column using SUBSTRING() in combination with functions like LOWER() and UPPER().
 
126
 
 
127
.. code-block:: mysql
 
128
 
 
129
        SELECT 
 
130
        CONCAT(UPPER(SUBSTRING(lastname,1,1)),
 
131
        LOWER(SUBSTRING(lastname,2,29)))
 
132
        FROM Students
 
133
        LIMIT 10;
 
134
 
 
135