@lottie
In MySQL, aggregation can be done without using the GROUP BY clause by using built-in functions such as SUM, COUNT, AVG, MIN, and MAX. Here are a few examples:
These queries will return a single result, which is the aggregated value for the specified column across all rows in the table. Note that if you want to retrieve aggregated values per group, you still need to use the GROUP BY clause.