This is the SQL statement:
mysql -u user -p password -e "SELECT concat(name,'-',number) from users
where email='[email protected]'"
Expected output: john-1234
Actual output: concat(name,'-',number)
john-1234
Why is this happening?