Important
The SingleStore 9.1 release candidate (RC) is available now. It will be promoted to general availability (GA) soon and at that time it will be renamed to SingleStore 10.
In the interim, SingleStore 9.1 RC can be used to preview, evaluate, and provide feedback on the new and upcoming features in SingleStore 10, while SingleStore 9.0 is recommended for production workloads.
INITCAP
On this page
The INITCAP() function converts the first letter of each word in a string to upper case.
Syntax
INITCAP(string_exp)
Arguments
-
string_: any valid string expression, a column name, or a string returned from another functionexp
Return Type
String
Examples
Example 1
SELECT INITCAP("alan storm");
+-----------------------+
| INITCAP("alan storm") |
+-----------------------+
| Alan Storm |
+-----------------------+Example 2
SELECT * FROM stockN;
+------+-------------+-------+
| ID | City | Count |
+------+-------------+-------+
| XCN | new york | 45 |
| ZDF | washington | 20 |
| WVM | boston | 42 |
| TYN | los angeles | 15 |
| XCN | chicago | 32 |
+------+-------------+-------+SELECT ID, INITCAP(City) FROM stockN;
+------+---------------+
| ID | INITCAP(City) |
+------+---------------+
| XCN | New York |
| ZDF | Washington |
| XCN | Chicago |
| WVM | Boston |
| TYN | Los Angeles |
+------+---------------+Example 3
SELECT INITCAP(CONCAT("jade", " ", "blue")) AS Result;
+-----------+
| Result |
+-----------+
| Jade Blue |
+-----------+Example 4
SELECT INITCAP("SUSAN GRAHAM, C@ss n1te, dEaN wHiTe") AS Results;
+-------------------------------------+
| Results |
+-------------------------------------+
| Susan Graham, C@Ss N1te, Dean White |
+-------------------------------------+Last modified: