pub fn initcap(s: &str, writer: &mut impl Write)
Capitalizes the first letter of each word in the given string.
query T select initcap('the quick brown fox'); ---- The Quick Brown Fox