“Every decade, another hyped-up database technology comes along that claims SQL is terrible, slow, or impractical,” Pavlo says. “Over time, the conventional wisdom comes back to realizing that [SQL] is a good idea, and everyone returns to it.”
https://spectrum.ieee.org/the-rise-of-sql
https://spectrum.ieee.org/the-rise-of-sql
IEEE Spectrum
The Rise of SQL
SQL dominated the jobs ranking in this year's IEEE Spectrum interactive rankings of the top programming languages. Normally, the top position is occupied by Python or other mainstays, such as C, C++, Java, and JavaScript, but we explain why SQL has soared…
Python tops programming love list – but if you want a job, learn SQL
https://www.theregister.com/2022/08/24/ieee_python_language/
https://www.theregister.com/2022/08/24/ieee_python_language/
Recognizing the potential demand for a commercial database product, [Ellison] founded the company that became Oracle in 1977, because CIA wanted a relational database
https://gizmodo.com/larry-ellisons-oracle-started-as-a-cia-project-1636592238
https://gizmodo.com/larry-ellisons-oracle-started-as-a-cia-project-1636592238
Gizmodo
Larry Ellison's Oracle Started As a CIA Project
Yesterday, Vox somehow managed to write an entire article about the history of Oracle and its founder Larry Ellison without mentioning the CIA even once.
For the compiler in dwh.dev there is a need to describe all the built-in snowflake functions: argument types, result types, nullability, etc.
I thought, since I have to write by hand anyway, I'll add all sorts of meta there - denoscriptions, links to docs, categories, and stuff. Hey, sooner or later we'll come to IDE, and intellisense will have to do. So we won't have to get up twice. And for dwh.dev the highlighting in the sorts with links to the docs is nice too.
In the end, I covered almost all functions without special syntax (they are described in the parser) and functions not related to admin (these too, but a little later).
I got about 30 files of JSON files with content like this:
Yes, the same for PostgreSQL and MySQL...
I thought, since I have to write by hand anyway, I'll add all sorts of meta there - denoscriptions, links to docs, categories, and stuff. Hey, sooner or later we'll come to IDE, and intellisense will have to do. So we won't have to get up twice. And for dwh.dev the highlighting in the sorts with links to the docs is nice too.
In the end, I covered almost all functions without special syntax (they are described in the parser) and functions not related to admin (these too, but a little later).
I got about 30 files of JSON files with content like this:
{
"name": "ST_SYMDIFFERENCE",
{ "desc": "Given two input GEOGRAPHY objects, returns a GEOGRAPHY object that represents the set of points from both input objects that are not part of the intersection of the objects (i.e. the symmetric difference of the two objects)."
"url": [ "https://docs.snowflake.com/en/sql-reference/functions/st_symdifference.html"],
{ "result": {
"type": "GEOGRAPHY",
{ "mods": [],
{ "desc": "If <geography_expression_1> and <geography_expression_2> are equal (i.e. the symmetric difference is an empty set of points), the function returns NULL."
},
{ "arguments": {
{ "in": [
{
{ "type": [ "GEOGRAPHY" ],
{ "desc": "<geography_expression_1>"
},
{
{ "type": [ "GEOGRAPHY" ],
{ "desc": "<geography_expression_2>"
}
]
},
}, "type": "function",
}, "nullable": "true
}
I think to open sourcing it. Question - does anyone besides me need this? :)Yes, the same for PostgreSQL and MySQL...