I would like to understand what might be the highest-level groupings of how query languages can be broken up into, and why one grouping might be fundamentally different than another. For example, the groupings that I have come up with now (for general-purpose usage) are:
- Relational
Example: SQL - Document
Example: XQuery, JSONPath, MQL (mongoDB) - Graph
Example: Cypher (Neo4j) - Other possibilities (?)
Dataframe/pandas? multidimensional (MDX)?
What might be the best high-level grouping to describe various query languages?
One variant is to group the query language depending on the database categories.
So far, so good, but in reality the border line between the categories become thinner and thinner.
For example, we have graph support in Microsoft SQL Server and T-SQL we have syntax like the following:
In MongoDB, we have graph,too using graph lookup:
So, maybe the the highest-level grouping is just a group of database management system following the American National Standards Institute (ANSI) standards (relational and object-relational) and the others.