Update databases.html

D David Veksler · 1 year ago 28a8d312346ff62d94aeb4947da3a48ed19c7cef
Parent: 9a8e8bccb

1 file changed +1 −1

Diff

diff --git a/databases.html b/databases.html
index 2f61501..a1f57e3 100644
--- a/databases.html
+++ b/databases.html
@@ -385,7 +385,7 @@
                             <li><strong>Process:</strong> Data must conform to the predefined schema upon insertion or update. Changes typically require formal schema migrations (e.g., `ALTER TABLE`).</li>
                             <li><strong>Pros:</strong> Enforces data consistency and integrity, makes data structure explicit and predictable, optimizes storage and querying based on known structure.</li>
                             <li><strong>Cons:</strong> Less flexible; changes can be slow and complex, requiring careful planning and potential downtime. Not ideal for rapidly evolving data structures or unstructured data.</li>
-                            <li><strong>Typical Databases:</strong> PostgreSQL, MySQL, SQL Server, SQLite.</li>
+                            <li><strong>Typical Databases:</strong> <a href="postgresql.html">PostgreSQL</a>, MySQL, SQL Server, SQLite.</li>
                         </ul>
                          <h6>Schema-on-Read / Schema-less (Non-Relational / NoSQL)</h6>
                          <ul>