CBSE · 083Class XII · 2025Section D1 mark
Question 34iv(or)
4 March 2025 · Computer Science (083)
(iv) (b) To display the name of all artists whose Article is 'Painting' through Natural Join.
Answer
SELECT Name FROM Articles NATURAL JOIN Artists WHERE Article = 'Painting';
Explanation
Natural join automatically joins on columns with same name (A_Code).