Answer the question
In order to leave comments, you need to log in
Am I using JOIN correctly in mysql?
Right now I'm using something like this
SELECT *
FROM `city`
LEFT JOIN `raion` ON `raion`.`id` = `city`.`raion`
LIMIT 5
EXPLAIN SELECT z.*, fq.`text` AS `question`, c.id AS `clientYes`, u.`name` AS nameUslug, city.`name` AS cityName, COUNT(zl.`id`) AS `count_zl`, p.`name` AS `partner_name`
FROM `zaiavki` z
LEFT JOIN `ankets` a ON a.`id` = z.`anketa`
LEFT JOIN `clients` c ON c.phone = z.phone
LEFT JOIN `uslugi` u ON z.usluga = u.id
LEFT JOIN `city` ON city.id = z.city
LEFT JOIN `faq_question` fq ON fq.`zaiavka` = z.`id`
LEFT JOIN `zaiavki_nocall_log` zl ON zl.`id` = z.`id`
LEFT JOIN `partners` p ON p.`id` = z.`partner`
WHERE z.`status` = '0' AND z.`delete` = '1'
GROUP BY z.id ORDER BY z.dateCreated DESC, z.id DESC LIMIT 0, 20
Answer the question
In order to leave comments, you need to log in
Vyacheslav Belyaev : look at Type = all this means a full pass through the table try to add an index so as not to select all records from join tables
EXPLAIN
will answer all your questions . The mysql optimizer can generate a different execution plan for the same query depending on the size of the tables, how they are used, and a bunch of other factors, so it's impossible to answer your question unambiguously - you need to look at specific data.
https://habrahabr.ru/post/211022/
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question