InterviewSolution
Saved Bookmarks
| 1. |
How Do You Get The Number Of Rows Affected By Query? |
|
Answer» SELECT COUNT (user_id) FROM USERS WOULD only return the NUMBER of user_id’s. SELECT COUNT (user_id) FROM users would only return the number of user_id’s. |
|