From 45d8081c6159e9c8b54bdbe807cf44dc16b52f05 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Tue, 8 Jun 2021 10:25:30 +0200 Subject: chore: MySQL 5.7 sucks (#524) --- docs/sql-standards.md | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs') 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 -- cgit