Hey so I have a Junction table linking two unrelated tables. Both the tables have ID\'s. I need to select the ID from each table using WHERE<
ID
WHERE<
Try this query:
INSERT INTO C (aID, bID) SELECT A.ID, B.ID FROM A, B WHERE A.Name='Me' AND B.Class='Math';