I am trying to find duplicate items in a table. The problem is that the information I need is in more than 1 table. Example of code that works, but does not give me everything I want:
select number
from table
group by number
having count(*) > 1;
Besides the numbers that are duplicated appearing, I need a description to go along with it and that information is in another table. If someone can help me, I would much appreciate it. Thanks.
select number
from table
group by number
having count(*) > 1;
Besides the numbers that are duplicated appearing, I need a description to go along with it and that information is in another table. If someone can help me, I would much appreciate it. Thanks.