HTMLify
Day 48
Views: 3 | Author: djdj
1 2 3 4 | # Write your MySQL query statement below SELECT user_id, CONCAT(UPPER(LEFT(name,1)),LOWER(SUBSTRING(name,2))) AS name FROM Users ORDER BY user_id; |
1 2 3 4 | # Write your MySQL query statement below SELECT user_id, CONCAT(UPPER(LEFT(name,1)),LOWER(SUBSTRING(name,2))) AS name FROM Users ORDER BY user_id; |