Sorry that won't work roger; if there were 22 sales rows for user_id 1 your query will only return a single row something like:
'1', 'in process' , 22
You can't both get the total count and individual row values in a single stroke.
After running your query, a mysql function
[man]mysql_num_rows[/man] will tell you how many rows were selected.