SELECT (COUNT() * 2) - (
SELECT COUNT()
FROM employees
WHERE current_project IS NOT NULL
AND position = ‘Developer’) AS ‘Count’
FROM projects;
Can someone explain this?
SELECT (COUNT() * 2) - (
SELECT COUNT()
FROM employees
WHERE current_project IS NOT NULL
AND position = ‘Developer’) AS ‘Count’
FROM projects;
Can someone explain this?
wdym? What Programming Language Is This?
This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.