How to concatenate two sql statements?
705869Jun 21 2009 — edited Jun 22 2009Hello,
How can I combine the following two sql statements so that the one row result from the first statement appears before the rows from my second sql statement. The reason I need this is to order the rows appropriately.
select username, id
from abusers
where id = 0
select username, id
from abusers
where id != 0
order by username
Thanks,
j