Capitalizes the first letter of each word and lowercases the rest. Title case transformation.
STRINGDiperbarui: 13 Jun 2026INITCAP(value)The string to convert to title case
1 SELECT INITCAP('hello world') as result;
Converts to title case.
1 SELECT 2 INITCAP(LOWER(full_name)) as formatted_name 3 FROM `project.dataset.customers`;
Standardizes customer name formatting.
| formatted_name |
|---|
| John Doe |
| Jane Smith |
1 SELECT 2 INITCAP(LOWER(street_address)) as formatted_address 3 FROM `project.dataset.addresses`;
Formats addresses with proper capitalization.
| formatted_address |
|---|
| 123 Sudirman Street |
| Central Park Block A |
Sudah paham INITCAP? Latih langsung di browser
Latihan interaktif, langsung di browser.