CBSE Class 12

Informatics Practices

01 Querying and SQL Functions

50
Total
0
Attempted
0
Correct
0
Wrong
00:00:00
Q-1
How many rows are present in the STUDENT table?
Easy SQL General
Sample Data
RollNo Name Class
1 Amit XII
2 Neha XII
3 Ravi XI
Reference Code
SELECT COUNT(*) FROM STUDENT;
A 2
B 3
C 4
D 1
Answer: 3
Explanation: COUNT(*) returns the total number of rows in the table, which is 3.