541
GB
EXPLAIN output 'type=ref' in MySQL means
IN
MySQL में EXPLAIN आउटपुट 'type=ref' का मतलब है
A
Full table scan
पूर्ण तालिका स्कैन
B
Unique index scan
अद्वितीय सूचकांक स्कैन
C
All rows scanned
सभी पंक्तियाँ स्कैन की गईं
D
Non-unique index lookup - finds rows matching an index condition
गैर-अद्वितीय सूचकांक लुकअप - सूचकांक स्थिति से मेल खाने वाली पंक्तियाँ ढूँढता है
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
EXPLAIN type=ref: uses non-unique index to find matching rows - much better than ALL.
व्याख्या (हिन्दी)
व्याख्या प्रकार=रेफ: मेल खाती पंक्तियों को खोजने के लिए गैर-अनूठे सूचकांक का उपयोग करता है - सभी से काफी बेहतर।