Describe the difference between relational and non-relational databases.
Use the supplied PostgreSQL tables to produce a concise comparison of the two database types. Include only core characteristics and present the results in the required order.
feature_name, relational_value, and non_relational_value.| Column | Type | Description |
|---|---|---|
| feature_idPK | INT | Unique identifier for a comparison characteristic |
| feature_name | VARCHAR(100) | Name of the database characteristic |
| display_order | INT | Required presentation order |
| is_core | BOOLEAN | Whether the characteristic belongs in the core comparison |
| Column | Type | Description |
|---|---|---|
| feature_idPK | INT | References the characteristic being compared |
| relational_value | VARCHAR(255) | Description of the characteristic for relational databases |
| non_relational_value | VARCHAR(255) | Description of the characteristic for non-relational databases |