Categories: MySQLi FunctionsPHP

Affected Rows – MySQLi Functions

Syntax :

mysqli_affected_rows(connection);

Description :

It used to get the information about number of affected rows in a previous MySQL operation like  INSERT, UPDATE ,DELETE , SELECT etc.

For SELECT statements mysqli_affected_rows() is similar to mysqli_num_rows().


Parameter :

  • connection – This is a Required parameter. It is a link identifier returned by mysqli_connect() function.

Output :

It will returns below values :

  • -1  indicates that the query returned an error.
  • = 0 no records were updated for an UPDATE query , no rows matched the WHERE clause in the query or that no query has been executed yet.
  • > 0  indicates the number of rows affected.

mysqli_affected_rows() –  MySQLi Functions Example in Procedural style  :

<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "tutorialmines";
$conn = new mysqli($servername, $username, $password, $dbname);

/* checking connection status */if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected to database successfully. \n";

/* Performing INSERT operation */$sql = "INSERT INTO employee ( name, salary, age ) VALUES ( 'Emp3', '5000', '23');";
mysqli_query($conn,$sql);
echo "<br>Affected rows after INSERT operation are: " . mysqli_affected_rows($conn);

/* Performing UPDATE operation */$sql = "UPDATE employee SET salary = '8000' WHERE id = 7;";
mysqli_query($conn,$sql);
echo "<br>Affected rows after UPDATE operation are: " . mysqli_affected_rows($conn);

/* Performing DELETE operation */$sql = "DELETE FROM employee WHERE id = 7";
mysqli_query($conn,$sql);
echo "<br>Affected rows after DELETE are: " . mysqli_affected_rows($conn);

/* selecting all rows to see effect on affected rows */$sql = "SELECT * FROM employee";
mysqli_query($conn,$sql);
echo "<br>Affected rows are: " . mysqli_affected_rows($conn);

$conn->close();
?>

Output of above code in the browser is as below:

Connected to database successfully.
Affected rows after INSERT operation are: 1
Affected rows after UPDATE operation are: 1
Affected rows after DELETE operation are: 1
Affected rows after SELECT operation are: 7

Related articles : mysqli_num_rows() .


jyoti rani

Recent Posts

Modern Toys, Magical Moments: Why the Best Toy Shop in Noida Is More Than Just a Store

When it comes to children, there’s one universal truth: the right toy can spark imagination, build skills, and make memories…

6 months ago

Rediscovering Joy: A New Era of Creativity & Comfort in Toy Stores

In today’s digital age, where screens and gadgets dominate our children’s lives, there’s something heartwarming about a well-loved plush toy…

6 months ago

Unboxing Imagination: Discovering the Joy of Play at a Toy Store in Noida

In a world dominated by screens and fast-paced routines, it’s easy to forget the simple magic of a toy in…

6 months ago

Imagination Unboxed: Discover Joy at the Toy Shop in Delhi

In the heart of Delhi’s vibrant streets lies a world where imagination meets innovation — the magical universe of toys.…

6 months ago

Play with Purpose: Discovering the Ultimate Toy Store in Noida

When was the last time a toy truly amazed you—not just as a product, but as a thoughtful tool for…

6 months ago

From Tears to Toys: Exploring Modern Childhood through Delhi’s Favorite Toy Shop

In the digital age, the way we experience childhood has changed, but the essence remains the same—imagination, exploration, and joy.…

6 months ago