最佳答案
他们做的是同一件事,只是不同而已?
除了使用 prepare
之外
$sth = $db->query("SELECT * FROM table");
$result = $sth->fetchAll();
还有
$sth = $db->prepare("SELECT * FROM table");
$sth->execute();
$result = $sth->fetchAll();
?