in reply to Re^2: Perl and MySQL: Get number of rows affected
in thread Perl and MySQL: Get number of rows affected
In MySql documentation, I got the below query:
Query from documentation : SELECT COUNT(ip), AVG(down) from test;
When I run the below query, i am getting the following output.
Query which I ran: mysql> select count(us_name) from table where us_name='samy'; +----------------+ | count(us_name) | +----------------+ | 6 | +----------------+ 1 row in set (0.00 sec)
Regards,
Velusamy R.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Perl and MySQL: Get number of rows affected
by Ieronim (Friar) on Jul 15, 2006 at 13:23 UTC |