Subject Sum, Union and Count
Author Luis
How to do this:

Select count(*) Total from clients where clientes.id=10
Union
Select count(*) Total from clients where clientes.id=11

It will return

Total
-----
300
200

Want to return
Total
-----
500

Thanks