$$ \text { On a relation named Loan of a bank: } $$
| Loan | ||
|---|---|---|
| Loan_number | Branch_name | Amount |
| L11 | Banjra Hills | 90000 |
| L14 | Kondapur | 50000 |
| L15 | SR Nagar | 4000 |
| L22 | SR Nagar | 25000 |
| L23 | Balanagar | 80000 |
| L25 | Kondapur | 70000 |
| L19 | SR Nagar | 65000 |
The following SQL query is executed
SELECT L1.loan_number
FROM Loan L1
WHERE L1.amount > (SELECT MAX
(L2.amount)
FROM Loan L2
WHERE L2.branch_name $=$ 'SR Nagar');
The number of rows returned by the query is _________
Consider a fact table in an OLAP application: Facts (D1, D2, val), where D1 and D2 are its dimension attributes and val is a dependent attribute. Suppose
attribute D1 takes 3 values and D2 takes 2 values, and all combinations of these values are present in the table Facts. How many tuples are there in the result of the following query?
SELECT D1, D2, sum(val)
FROM Facts
GROUP BY CUBE (D1, D2);
Consider the following two relations, named Customer and Person, in a
database:
Person (
aadhaar CHAR(12) PRIMARY KEY, name VARCHAR(32));
Customer (
name VARCHAR(32), email VARCHAR(32) PRIMARY KEY, phone CHAR(10), aadhaar CHAR(12), FOREIGN KEY (aadhaar) REFERENCES Person(aadhaar)); Which of the following statements is/are correct?
Consider a database relation $R$ with attributes ABCDEFG , and having the following functional dependencies:
$$ \mathrm{A} \rightarrow \mathrm{BCEF} \quad \mathrm{E} \rightarrow \mathrm{DG} \quad \mathrm{BC} \rightarrow \mathrm{~A} $$
Which of the following statements is/are correct?
GATE Data Science and Artificial Intelligence Papers
All year-wise previous year question papers