BookDang / MyQuestions

0 stars 0 forks source link

Learn MySql #5

Open BookDang opened 2 hours ago

BookDang commented 2 hours ago

EXPLAIN

1. id


2. select_type


3. table


4. type


5. possible_keys


6. key


7. key_len


8. ref


9. rows


10. filtered


11. Extra


Ví dụ cụ thể:

Truy vấn:

EXPLAIN SELECT * FROM Products WHERE category = 'Electronics' AND price > 100;
Kết quả: id select_type table type possible_keys key key_len ref rows filtered Extra
1 SIMPLE Products ref idx_category idx_price 52 const 100 50 Using where

Giải thích:


Hiểu đúng các thông số từ EXPLAIN sẽ giúp bạn tối ưu hóa hiệu quả truy vấn trong MySQL!