136
GB
DROP TABLE IF EXISTS questions
IN
यदि प्रश्न मौजूद हों तो तालिका छोड़ें
A
Errors if table doesn't exist
यदि तालिका मौजूद नहीं है तो त्रुटियाँ
B
Creates table if not exists
यदि मौजूद नहीं है तो तालिका बनाता है
C
Drops table only if it exists (no error if it doesn't exist)
तालिका मौजूद होने पर ही उसे हटाता है (यदि मौजूद नहीं है तो कोई त्रुटि नहीं)
D
Drops all tables
सभी तालिकाएँ गिरा देता है
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
IF EXISTS: prevents error when trying to drop a table that may not exist.
व्याख्या (हिन्दी)
यदि मौजूद है: उस तालिका को छोड़ने का प्रयास करते समय त्रुटि को रोकता है जो मौजूद नहीं हो सकती है।