Jump to content

Fastest way to count mysql rows using mysqli (or another method)


jamesjmann

Recommended Posts

Is there a way to get the count of rows like this?

$count = somefunctionthatreturnscount(mysqli_query($mysqli, "SELECT COUNT(*) FROM table"));

Instead of...

$count = mysqli_num_rows(mysqli_query($mysqli, "SELECT id FROM table"));

//or even...

$count = mysqli_fetch_array(mysqli_query($mysqli, "SELECT COUNT(*) as count FROM table"));

Ultimately, I want the method that will get the count the quickest and if can be done similarly to the first code and still have good performance.

 

Thanks in advance!

 

Update: Reported post as duplicate. Need moderate to delete duplicates as that option is not appearing for me.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.