What is RDBMS, and explain the types of joins in SQL
Asked in the Technical stage. Provide a concise explanation of RDBMS and the common SQL join types, then write a PostgreSQL query using the Newgen OmniDocs sample tables.
document_id, document_title, owner_name, and assignment_statusdocument_id ascending, with unassigned documents included| Column | Type | Description |
|---|---|---|
| document_idPK | INT | Unique document identifier |
| document_title | VARCHAR(150) | Document title |
| owner_id | INT | Optional reference to the document owner |
| Column | Type | Description |
|---|---|---|
| owner_idPK | INT | Unique owner identifier |
| owner_name | VARCHAR(100) | Owner display name |