1396
GB
When converting an ER model to relational schema a weak entity is mapped by:
IN
ईआर मॉडल को रिलेशनल स्कीमा में परिवर्तित करते समय एक कमजोर इकाई को मैप किया जाता है:
A
Creating a table with its own independent primary key
अपनी स्वयं की स्वतंत्र प्राथमिक कुंजी के साथ एक तालिका बनाना
B
Creating a merged table with the strong entity
मजबूत इकाई के साथ एक मर्ज की गई तालिका बनाना
C
Creating a separate lookup table
एक अलग लुकअप टेबल बनाना
D
Creating a table whose primary key is the combination of its partial key (discriminator) and the primary key of its identifying strong entity with a foreign key to the owner table
एक तालिका बनाना जिसकी प्राथमिक कुंजी इसकी आंशिक कुंजी (विभेदक) का संयोजन है और मालिक तालिका के लिए एक विदेशी कुंजी के साथ इसकी पहचान करने वाली मजबूत इकाई की प्राथमिक कुंजी है
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English)
Weak entity mapping: table with columns for all its attributes + FK column(s) referencing the owner strong entity. Primary key = discriminator + owner_PK. FK to owner must be part of the ON DELETE CASCADE relationship.
व्याख्या (हिन्दी)
कमजोर इकाई मैपिंग: इसकी सभी विशेषताओं के लिए कॉलम वाली तालिका + मालिक की मजबूत इकाई को संदर्भित करने वाले एफके कॉलम। प्राथमिक कुंजी = विवेचक + स्वामी_पीके। मालिक को FK ऑन डिलीट कैस्केड संबंध का हिस्सा होना चाहिए।