Salve,
sto impazzendo per eseguire una query su 3 tabelle:
- nelle tabelle 1 e 2 ci sono solo i campi: id auto-increment e il valore
- nella tabella 3 ci sono i campi: id auto-increment, id della tabella 1, id della tabella 2
tabella1
-------------
id | valore
tabella2
-------------
id | valore
tabella3
------------------------
id | id_t1 | id_t2
Vorrei estrarre tutti i record delle tabelle 1 e 2 che non esistono nella tabella 3, utilizzando (id_t1 + id_t2) come chiave univoca.
es:
Risultato della query:
----------------------------------------------
valore_t1 | valore_t2
valore_t1 | valore_t2
valore_t1 | valore_t2
valore_t1 | valore_t2
valore_t1 | valore_t2
E' possibile farlo?