SQL Interview Questions(Set-2) – User friendly Tech help
1. Where clause cannot be used with aggregate functions (like sum, max, min, count) so we need to implement having clause. n Example for a Table A we need to count the applications where count is greater than 5, so we cannot create a query like select count (applications) from table A where count (app)…