~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

new string function docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Other String Functions
 
2
======================
 
3
 
 
4
LOAD_FILE()
 
5
 
 
6
Load the named file
 
7
 
 
8
ELT()                     Return string at index number
 
9
 
 
10
EXPORT_SET()              Return a string
 
11
 
 
12
FORMAT()                  Return a number formatted to specified number of decimal places
 
13
 
 
14
LOAD_FILE()               Load the named file
 
15
 
 
16
LPAD()                    Return the string argument, left-padded with the specified string
 
17
 
 
18
MAKE_SET()                Return a set of comma-separated strings that have the corresponding bit in bits set
 
19
 
 
20
MATCH                     Perform full-text search
 
21
 
 
22
MID()                     Return a substring starting from the specified position
 
23
 
 
24
ORD()                     Return character code for leftmost character of the argument
 
25
 
 
26
QUOTE()                   Escape the argument for use in an SQL statement
 
27
 
 
28
REPEAT()                  Repeat a string the specified number of times
 
29
 
 
30
REPLACE()                 Replace occurrences of a specified string
 
31
 
 
32
REVERSE()                 Reverse the characters in a string
 
33
 
 
34
RIGHT()                   Return the specified rightmost number of characters
 
35
 
 
36
RPAD()                    Append string the specified number of times
 
37
 
 
38
SOUNDEX()                 Return a soundex string
 
39
 
 
40
SOUNDS LIKE               Compare sounds
 
41
 
 
42
SPACE()                   Return a string of the specified number of spaces
 
43
 
 
44
SUBSTR()                  Return the substring as specified
 
45
 
 
46
SUBSTRING_INDEX()         Return a substring from a string before the specified number of occurrences of the delimiter
 
47
 
 
48
SUBSTRING()               Return the substring as specified