Skip to content

Commit

Permalink
Link to MySQL and MariaDB explain docs for #47043
Browse files Browse the repository at this point in the history
Co-authored-by: Reid Lynch <reid.lynch@gmail.com>
  • Loading branch information
zzak and reid-rigo committed Feb 8, 2023
1 parent dcd8f37 commit 135327b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion guides/source/active_record_querying.md
Expand Up @@ -2577,7 +2577,12 @@ ANALYZE SELECT `shop_accounts`.* FROM `shop_accounts` INNER JOIN `customers` ON
1 row in set (0.00 sec)
```

Please note that explain and analyze options vary across MySQL and MariaDB versions.
NOTE: EXPLAIN and ANALYZE options vary across MySQL and MariaDB versions.
([MySQL 5.7][MySQL5.7-explain], [MySQL 8.0][MySQL8-explain], [MariaDB][MariaDB-explain])

[MySQL5.7-explain]: https://dev.mysql.com/doc/refman/5.7/en/explain.html
[MySQL8-explain]: https://dev.mysql.com/doc/refman/8.0/en/explain.html
[MariaDB-explain]: https://mariadb.com/kb/en/analyze-and-explain-statements/

### Interpreting EXPLAIN

Expand Down

0 comments on commit 135327b

Please sign in to comment.