I have two separate queries:
SELECT COUNT(*)employees FROM company
WHERE status = 'A' AND salary_rate IS NOT NULL;
SELECT COUNT(*)employees FROM company
WHERE status = 'A' AND current_level IS NOT NULL;
I want to show the results of these two queries in one query. Is this possible?