I have two tables in a database (Animal1 and Animal2). In animal1 there is a field called Animal_ID (1,2,3,4,5). In Animal2 there is also a field called Animal_ID (2,3,4).
I want to: Show only the Animal_ID of Animal1 which will exclude the numbers from Animal2 Example Output must be: 1,5 becuase 2,3,4 is in both tables.
Thank you