LoginSignup
6
8

More than 5 years have passed since last update.

PDO での select count(*)

Last updated at Posted at 2015-09-23

PDOStatmant::fetchColumnを使う

$sql = 'select count(*) from T_test where name = :name';
$stmt = $pdo -> prepare($sql);
$stmt -> execute(array('name' => 'もえの'));

$count = $stmt -> fetchColumn();
//fetchColumn(0)の0を省略
echo $count;

fetchAll()の[0][0]と同じ。

6
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
8