Za předpokladu, že pro každé uživatelské jméno existuje pouze jeden řádek v uživatelích, pak:
Select q1 + q2 + q3 + q4 + q5 as total from users where username = '$username'
Pokud jich je více, možná budete chtít
Select Sum(q1 + q2 + q3 + q4 + q5) as total from users where username = '$username'