Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How can we get the number of rows affected by query?
Home
Sql
How can we get the number of rows affected by query?
asked
Jan 14
in
Sql
by
AdilsonLima
How can we get the number of rows affected by query?
mysql-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 14
by
AdilsonLima
Number of rows can be obtained by
SELECT COUNT (user_id) FROM users;
...