Mysql
 sql >> Database >  >> RDS >> Mysql

Conta quante righe sono state inserite dall'ultima query SQL

mettilo nella tua ultima affermazione;

SELECT ROW_COUNT();

AGGIORNAMENTO 1

che ne dici di usare mysql_affected_rows , esempio

<?php

   $link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
   if (!$link) 
   {
       die('Could not connect: ' . mysql_error());
   }
   mysql_select_db('mydb');

   /* this should return the correct numbers of deleted records */
   mysql_query('you SQL QUERY HERE');
   printf("Records deleted: %d\n", mysql_affected_rows());

?>