transparent
Programmer
I have 3 tables:
• tbl_document
which has rows:
document_id
document_name
etc
• tbl_document_group_intersect
which has rows:
document_id
group_id
• tbl_document_department_intersect
which has rows:
document_id
department_id
From these tables I want to return document information (ie document_id, document_name) for documents that DONT exist in tables:
• tbl_document_department_intersect
• tbl_document_group_intersect
How would I do this?
Cheers
• tbl_document
which has rows:
document_id
document_name
etc
• tbl_document_group_intersect
which has rows:
document_id
group_id
• tbl_document_department_intersect
which has rows:
document_id
department_id
From these tables I want to return document information (ie document_id, document_name) for documents that DONT exist in tables:
• tbl_document_department_intersect
• tbl_document_group_intersect
How would I do this?
Cheers