Consider the following relation table:
table(theatre, address capacity)
What should be written at the end of this query
Select P1.address
From table P1
Such that it returns the theatre with maximum capacity?
(A) Where capacity > = ALL( select P2.capacity from table p2)
(B) Where capacity > = ANY( select P2.capacity from table p2)
(C) Where capacity > ALL( select P2.capacity from table p2)
(D) Where capacity > ANY( select P2.capacity from table p2)