InterviewSolution
Saved Bookmarks
| 1. |
State true or false: If I = read(Q) and J = read(Q) then the order of I and J does not matter.(a) True(b) FalseThe question was asked by my school principal while I was bunking the class.Query is from Serializability topic in division Transactions of RDBMS |
|
Answer» CORRECT choice is (a) True Explanation: If I = read(Q) and J = read(Q) then the ORDER of I and J does not matter because both Iand J are read OPERATIONS on the query. |
|