• In SQL Server, you could use the following:

    SELECT 'Your performance is ' + CONVERT(Varchar, grade);

    I would consult the MySQL documentation under "string concatenation" for details on how it's done in that database.