InterviewSolution
Saved Bookmarks
| 1. |
How to get a total number of rows available in the table? |
|
Answer» COUNT(*) is USED to count the NUMBER of ROWS in the table. SELECT COUNT(*) FROM BestPageTable; |
|