Suppose we want to know how many users have the same name. Let us create table users as follows:
create table users(
id serial,
name varchar(8) unique,
count int
);
Now, we just discovered a new user named Joe and would like to take him into account. To achieve that, we need to d...