summaryrefslogtreecommitdiff
path: root/docs/sql-standards.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/sql-standards.md')
-rw-r--r--docs/sql-standards.md4
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