为什么 PDO 的 fetchColumn() 忽略我查询的 SQL LIMIT 部分?
$result 在数据库中找到 2 条记录时返回“2”?
谢谢!
$sql = "SELECT count(*) FROM table WHERE Username = ? and
Password = ? LIMIT 1";
$q = $this->connection->prepare($sql);
$q->execute(array($user, $pwd));
$result = $q->fetchColumn();
echo $result;