Skip to content

Instantly share code, notes, and snippets.

@Tran-Duc-Hoa
Created October 7, 2025 10:04
Show Gist options
  • Select an option

  • Save Tran-Duc-Hoa/9fa926ef20b8c7594f438a8ccaf1193f to your computer and use it in GitHub Desktop.

Select an option

Save Tran-Duc-Hoa/9fa926ef20b8c7594f438a8ccaf1193f to your computer and use it in GitHub Desktop.
Cons of SQL
Con Description
Vertical Scaling SQL databases typically scale vertically (adding more CPU/RAM to a single server). This is expensive and eventually hits a hardware ceiling.
Rigid Schema The need for a predefined, fixed schema means changing the data structure (e.g., adding a new column) can be complex, time-consuming, and potentially disruptive, especially on large datasets.
Handling Unstructured Data They are poorly suited for storing and querying unstructured data (like JSON documents or images) as all data must fit into the tabular format.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment