MySQL doesn’t have a specific string function for string capitalization. Use the following method for this purpose: SELECT CONCAT(UPPER(SUBSTRING("test string", 1, 1)), LOWER(SUBSTRING("test string", 2))); The result: Test string
If you enjoy our post, feel free to subscribes to our rss feeds
