I have database with 3 columns: id
, numbers1
and numbers2
.
I am doing a query like this:
select id from numbers where numbers.numbers1 = numbers.numbers2;
And I am getting a result of something in the id column.
Assuming I have 1,2,3,4,5
in the id
column and I am getting as a result 1,2,3 how do i show what have left from the column? I mean how do I show in the result 4,5? and not the 1,2,3 that I got in the result?