InterviewSolution
Saved Bookmarks
| 1. |
How you will count the number of rows from a table TAB? |
|
Answer» SELECT COUNT(*) FROM TAB query is used to count the number of rows in a table. |
|