Database table by name LoanRecords is given below. What is the output of the following SQL query? SELECT count(*) FROM ( (SELECT Borrower, BankManager FROM LoanRecords) AS S NATURAL JOIN (SELECT BankManager, LoanAmount FROM LoanRecords) AS T );
Topic-wise GATE CS PYQs with verified steps

