ユーザー名ごとにユーザーの行が1つだけであるとすると、次のようになります。
Select q1 + q2 + q3 + q4 + q5 as total from users where username = '$username'
複数ある場合は、おそらく必要です
Select Sum(q1 + q2 + q3 + q4 + q5) as total from users where username = '$username'
ユーザー名ごとにユーザーの行が1つだけであるとすると、次のようになります。
Select q1 + q2 + q3 + q4 + q5 as total from users where username = '$username'
複数ある場合は、おそらく必要です
Select Sum(q1 + q2 + q3 + q4 + q5) as total from users where username = '$username'