Giả sử chỉ có một hàng trong số người dùng cho mỗi tên người dùng thì:
Select q1 + q2 + q3 + q4 + q5 as total from users where username = '$username'
Nếu có nhiều hơn một thì bạn có thể muốn
Select Sum(q1 + q2 + q3 + q4 + q5) as total from users where username = '$username'