What does the following query do? select name, ID, branch from student, department where student.branch = department.branch;
What does the following query do? select name, ID, branch from student, department where student.branch = department.branch; Correct Answer It gives the values of name, ID, branch from their respective relations where the values in the branch attribute are same
student.branch = department.branch verifies whether both the values of the attributes are same in both the relations and returns the value.
মোঃ আরিফুল ইসলাম
Feb 20, 2025