diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/sql-standards.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/sql-standards.md b/docs/sql-standards.md index 6e1d2f9..9307615 100644 --- a/docs/sql-standards.md +++ b/docs/sql-standards.md @@ -179,7 +179,11 @@ You can see [here](https://github.com/Azerothcore/azerothcore-wotlk/blob/master/ All active Check Constraints can be found by using this query: ```sql +-- MySQL 8.0 SELECT * FROM information_schema.CHECK_CONSTRAINTS; + +-- MySQL 5.7 +SELECT * FROM information_schema.TABLE_CONSTRAINTS ``` ## Note for SQL reviewer |
