sql >> データベース >  >> RDS >> Mysql

最後のSQLクエリから挿入された行数をカウントする

    これを最後のステートメントに入れてください;

    SELECT ROW_COUNT();
    

    アップデート1

    mysql_affected_rowsを使用するのはどうですか 、例

    <?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());
    
    ?>
    


    1. Postgresqlスキーマパスを永続的に設定する

    2. PHPを使用したMySQLからExcelへの生成

    3. 行を返さないSELECTsqlステートメントのExecuteNonQuery

    4. SQLite JSON_PATCH()