क्रॉस जॉइन का उपयोग किया जा सकता है न कि टेबल_कलेक्शन में
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
)
क्रॉस जॉइन का उपयोग किया जा सकता है न कि टेबल_कलेक्शन में
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
)