0 0 votes In SQL we can use aggregate function without using GROUP by clause. (TRUE /FALSE) Databases + – focus _GATE 713 views answer comment Share Follow Print See 1 comment 1 1 comment reply Bhagirathi commented Jul 2, 2015 reply Follow flag yes you can use it in select clause without having a group by clause example select avg(salary) from employee employee(id,name,salary) 0 0 replyShare Please log in or register to add a comment.
2 2 votes Yes it is possible . eg : SELECT AVG(Price) AS PriceAverage FROM Products; now see this SELECT NAME , AVG(Price) AS PriceAverage FROM Products; this is not possible . in that you have to place GROUP BY NAME . peace Pranay Datta 1 answered Jul 2, 2015 Pranay Datta 1 comment Share Follow 0 reply Please log in or register to add a comment.