multiple queries may be...
SELECT FROM table WHERE paid="1" ORDER BY hits DESC
SELECT FROM table WHERE paid="0" ORDER BY hits DESC
or
use single query and sort by PHP
SELECT * FROM table ORDER BY hits DESC
then use mysql_fetch_array() function. Now sort this array using krsort (key = paid) and u r done
second option reduces load on SQL server
MUCH SIMPLER (not sure though)
SELECT * FROM table ORDER BY hits, paid DESC
Good Luck
TommYNandA