diff options
| author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2021-06-08 10:25:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-08 10:25:30 +0200 |
| commit | 45d8081c6159e9c8b54bdbe807cf44dc16b52f05 (patch) | |
| tree | 4a922acb161870a1e0bd98f0569abdcd79633750 /docs | |
| parent | 21011e30e5a935b427c10d415cc0bf752758a384 (diff) | |
| download | wiki-45d8081c6159e9c8b54bdbe807cf44dc16b52f05.tar.gz wiki-45d8081c6159e9c8b54bdbe807cf44dc16b52f05.tar.bz2 wiki-45d8081c6159e9c8b54bdbe807cf44dc16b52f05.zip | |
chore: MySQL 5.7 sucks (#524)
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 |
