Supponendo che ci sia solo una riga in utenti per ogni nome utente, allora:
Select q1 + q2 + q3 + q4 + q5 as total from users where username = '$username'
Se ce ne sono più di uno, potresti volerlo
Select Sum(q1 + q2 + q3 + q4 + q5) as total from users where username = '$username'