# SQL Language Support

Dolt's goal is to be compliant with the MySQL dialect, with every query and statement that works in MySQL behaving identically in Dolt.

For most syntax and technical questions, you should feel free to refer to the [MySQL user manual](https://dev.mysql.com/doc/refman/8.0/en/select.html).

Any deviation from the MySQL manual should be documented on this page, or else indicates a bug. Please [file issues](https://github.com/dolthub/dolt/issues) with any incompatibilities you discover.

This series of documents shows:

* ✅ Which SQL language features we support the same as MySQL
* 🟠 Where we support the feature but deviate from MySQL in some way
* ❌ Where we lack support for the SQL language feature.

This section is divided into five main categories:

1. [Data Description](/sql-reference/sql-support/data-description.md): SQL features for describing and organizing data
2. [Expressions, Functions, Operators](/sql-reference/sql-support/expressions-functions-operators.md): SQL expressions, functions and operators used in queries
3. [Supported Statements](/sql-reference/sql-support/supported-statements.md): statements Dolt supports
4. [Information Schema](/sql-reference/sql-support/information-schema.md): Dolt support for MySQL information schema
5. [Collations and Character Sets](/sql-reference/sql-support/collations-and-charsets.md): SQL features for describing and comparing strings
6. [System Variables](/sql-reference/sql-support/system-variables.md): SQL features for configuring server behavior
7. [SQL Modes](/sql-reference/sql-support/sql-modes.md): Dolt support for MySQL SQL modes
8. [Miscellaneous](/sql-reference/sql-support/miscellaneous.md): miscellaneous SQL features


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.dolthub.com/sql-reference/sql-support.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
