try
select usrname from tbl1 minus select usrname from tbl2
in ur code, wat u've done is a 'cartesian product'...quick explaination
tbl1 = [a, b, c]
tbl2 = [c, d]
the db will do
is a == c
is a == d
is b == c
is b == d
is c == c
is c == d
this will always result in tbl1, since at least one of the conditions for each element will be true.
hope this helps 😮)
Tiang