So I want to take the first letter of the first name and all of the last name, add them together and make that the person's username.
I was using CONCAT() and I keep getting an unexplained syntax error from MySQL.
I have:
SELECT
CONCAT(left(first_name, 1), left(last_name)) username
FROM survey_responders;
And all I get is "Syntax Error" as my error. What am I doing wrong?