Database-Management-System
October 4, 2023
Computer-Networks
October 4, 2023
Database-Management-System
October 4, 2023
Computer-Networks
October 4, 2023

Database-Management-System

Question 24

A relational database contains two tables student and department in which student table has columns roll_no, name and dept_id and department table has columns dept_id and dept_name. The following insert statements were executed successfully to populate the empty tables:

Insert into department values (1, 'Mathematics')
Insert into department values (2, 'Physics')
Insert into student values (l, 'Navin', 1)
Insert into student values (2, 'Mukesh', 2)
Insert into student values (3, 'Gita', 1)  

How many rows and columns will be retrieved by the following SQL statement?

Select * from student, department

A
0 row and 4 columns
B
3 rows and 4 columns
C
3 rows and 5 columns
D
6 rows and 5 columns
Question 24 Explanation: 
Simply, cartesian product of two tables will result
rows = 3 * 2 = 6
Columns = 3 + 2 = 5
Correct Answer: D
Question 24 Explanation: 
Simply, cartesian product of two tables will result
rows = 3 * 2 = 6
Columns = 3 + 2 = 5

Leave a Reply

Your email address will not be published. Required fields are marked *