๐ PostgreSQL โ Aggregating and Grouping
So far in this course, every query weโve written has done one simple thing:
๐ It fetched rows exactly as they exist in the database.
For example:
SELECT * FROM users;
This simply returns all rows.
B
innosufiyan.hashnode.dev4 min read