CBSE Class 12 Informatics Practices
Question 36 of 79
Database Query using SQL — Question 7
Back to all questionsSELECT COUNT(*) FROM PRODUCT;
Reason — The SQL statement SELECT COUNT(*) FROM PRODUCT; is used to retrieve the total number of records or rows present in the "PRODUCT" table. The COUNT(*) function counts all rows along with the NULL values in a specified table, and the SELECT keyword is used to fetch data from the database.