Here's a statement I wrote, which selects records from a table called WHYTES in a database called WHYTES.MDB. I want a statement which selects records from two tables, called whytes and whytes1. Can anyone help me out? Thanks in advance.
SELECT *
FROM whytes
WHERE ARTIST LIKE '%varARTIST%' AND TITLE LIKE '%varTITLE%'
ORDER BY ARTIST ASC
SELECT *
FROM whytes
WHERE ARTIST LIKE '%varARTIST%' AND TITLE LIKE '%varTITLE%'
ORDER BY ARTIST ASC