A schedule of three database transactions $T_1, T_2$, and $T_3$ is shown. $R_i(A)$ and $W_i(A)$ denote read and write of data item $A$ by transaction $T_i, i=1,2,3$. The transaction $T_1$ aborts at the end. Which other transaction(s) will be required to be rolled back?
$$R_1(X) W_1(Y) R_2(X) R_2(Y) R_3(Y) \operatorname{ABORT}\left(T_1\right)$$
Consider two relations describing teams and players in a sports league:
$\bullet$ teams(tid, tname): tid, tname are team-id and team-name, respectively.
$\bullet$ players(pid, pname, tid): pid, pname, and tid denote player-id, player-name and the team-id of the player, respectively.
Which ONE of the following tuple relational calculus queries returns the name of the players who play for the team having tname as ' $M I$ '?
Consider a relational schema team(name, city, owner), with functional dependencies \{name $\rightarrow$ city, name $\rightarrow$ owner}.
The relation team is decomposed into two relations, $t 1$ (name, city) and $t 2$ (name, owner). Which of the following statement(s) is/are TRUE?
Consider the following database tables of a sports league.
player(pid, pname, age)
team(tid, tname, city, cid)
coach(cid, cname)
members(pid, tid)
An instance of the table and an SQL query are given.
The value returned by the given SQL query is ________ . (Answer in integer)