select user.id, user.name
from schema.table_users user
where not exists ( select dept.kullanici_id
from schema.table_departments dept
where dept.user_id=user.id)
order by user.id;
from schema.table_users user
where not exists ( select dept.kullanici_id
from schema.table_departments dept
where dept.user_id=user.id)
order by user.id;
Comments
Post a Comment