Well, let's suppose i have the below table with their respective values:
create table player(
name varchar(255),
level int
);
INSERT INTO player values ('Fighter', 4);
INSERT INTO player values ('Archer', 2);
INSERT INTO player values ('Assassin', 6);
And i expect to know which levels below the higher level there is no players.
In this case, i want to have the result: (1,3,5).
I am using MYSQL but any Database query solution could help me to solve.
Thanks.