←back to thread

264 points davidgomes | 2 comments | | HN request time: 0.527s | source
Show context
yen223 ◴[] No.41875321[source]
Databases tend to be "stickier" than other parts of any large software system. Largely because database migrations are costly. You can't just tear down an old database and rebuild a new one, you have to figure out how to move all that data across too.

The consequence is that things in database-land tends to move slower than other types of software. This I think is the major reason why we still use SQL.

replies(2): >>41875368 #>>41875643 #
polishdude20 ◴[] No.41875643[source]
What's the SQL alternative?
replies(2): >>41875871 #>>41876579 #
1. p10_user ◴[] No.41875871[source]
JSON - er JSON-based document storage - documents with unique identifiers. and the ability to define and set schemas for the JSON, and ... we're back to a relational database
replies(1): >>41877879 #
2. ogogmad ◴[] No.41877879[source]
I think he was talking about the query language.