Username*
E-Mail*
Password*
Confirm Password*
Terms* By registering, you agree to the Terms of Service and Privacy Policy.
Forget
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Captcha* Click on image to update the captcha .
can you help me with this question
WHERE
SELECT
UPDATE
DELETE
HAVING
GROUP BY
📌 Example:
SELECT department, COUNT(*)
FROM employees
WHERE salary > 50000
GROUP BY department
HAVING COUNT(*) > 10;
You must login or register to add a new answer.
Previous question
Next question
Answer ( 1 )
WHERE
is used to filter records before grouping (used withSELECT
,UPDATE
,DELETE
).HAVING
is used to filter records after grouping (used withGROUP BY
).📌 Example:
SELECT department, COUNT(*)
FROM employees
WHERE salary > 50000
GROUP BY department
HAVING COUNT(*) > 10;