Comment by aziis98
3 months ago
I agree about relational languages. It's absurd when I think that SQL and Datalog came from the same foundations of relational calculus. It's just so much lost expressive power.
I really like what PRQL [1] did, at least it makes table operations easily chainable. Another one that comes to mind is Datomic [2].
[2]: https://docs.datomic.com/peer-tutorial/query-the-data.html
I explore the idea with https://tablam.org (relational + array). I even toyed with making relational queries to make types:
So the types are in full sync when changes on the schema happen. And all of this is type safe.
I was struggling with doing interesting things with the semantic web circa 2007 and was thinking "OWL sucks" and looking at Datalog as an alternative. At that time Datalog was an obscure topic and hard to find information about it. 10 years later it was big.
(Funny after years of searching I found somebody who taught me how to do really complex modelling in OWL DL but from reading the literature I'm pretty sure the average PhD or prof in the field has no idea.)
> I found somebody who taught me how to do really complex modelling in OWL DL
Is there any resource you could recommend for that?
I wrote up what I learned an a technical report that got sent to the editors at ISO a month or so ago and ought to appear pretty soon. Look up my profile and send me a note.
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
2 replies →
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.