For example I have a table like this:
product | quantity | something ------------------------------- abc | 5 | 2 xzy | 5 | 2 asd
$q="select sum(quantity), sum(something) from tableName";