Mysql
 sql >> Database >  >> RDS >> Mysql

Unire più tabelle per ottenere valori NON UGUALI in MySQL

Potrebbe utilizzare un cross join e non in table_collection

select user.id, user.name, data.data_id, data.data
from user 
cross join data
where (  user.user_id, data.data_id) not in ( 
   select user_id, data_id 
   from table_collection
)