Comment by vkazanov
3 months ago
Uh... given the beauty of relational algebra I don't understand how we ended up with the ugly mess of sql.
3 months ago
Uh... given the beauty of relational algebra I don't understand how we ended up with the ugly mess of sql.
This makes me want to throw up
https://www.postgresql.org/docs/current/queries-with.html
If you would like some exposure therapy: https://news.ycombinator.com/item?id=42577736
Some people might think it is crazy but I like wrapping queries like that up in JooQ so I can write
Life finds a way, I suppose:-)
I have spent a lot of time trying to understand how we ended up with SQL. Best I can determine, we got SQL because it isn't relational, it is tablational. Tables are a lot easier than relations to understand for the layman, and they successfully pushed for what they were comfortable with, even if to the chagrin of technical people.
Here you go: https://www.red-gate.com/simple-talk/opinion/opinion-pieces/...
"RM: What was key to SQL becoming the standard language for relational databases in the mid- 1980s? Was all down to good marketing?
CJD: In other words, why did SQL became so popular? Especially given all its faults? Well, I think this is rather a sorry story. I said earlier that there has never been a mainstream DBMS product that’s truly relational. So the obvious question is: Why not? And I think a good way for me to answer your questions here is to have a go at answering this latter question in their place, which I’ll do by means of a kind of Q&A dialog. Like this:
Discussed in HN (probably posted many times): https://news.ycombinator.com/item?id=39189015
> Why has no truly relational DBMS has ever been widely available in the marketplace?
Postgres was "truly relational" for a significant portion of its life before finally losing the battle with the SQL virus. There is probably no DMBS more widely available. Granted, it wasn't widely used until the SQL transition.
> SQL isn’t relational.
This is key. Relations are too complicated for the layman, the one who is paying for it, to understand. Tables are more in tune to what is familiar to them. The hardcore math/software nerds might prefer relationality, but they aren't the ones negotiating multi-million dollar contracts with Oracle/IBM.
I remember when Postgres moved to SQL. People started billing it as being Oracle, but free. That got non-technical manager attention. Without that marking success appealing to the layman, I expect nobody would be using it today.
I know the story of System R really well.
It was a breakthrough system is almost all aspects. It defined what dbs would look like both internally and externally for decades.
In many ways SQL is like C: good for what authors wanted it to be but severe consequences much later.
But the history doesn't care. SQL (and C) still have many-many years ahead of them.