if ($result = mysqli_query($link, "SELECT * FROM `users`")) {
while ($row = mysqli_fetch_assoc($result)) {
}
}
上記のコードクエリを使用すると正常に動作します..
しかし、次のコードを使用すると、mysql が非常に遅くなります。
if ($result = mysqli_query($link, "SELECT * FROM `users` WHERE name IS NULL")) {
while ($row = mysqli_fetch_assoc($result)) {
}
}
そのクエリを高速化する理由と方法を教えてもらえますか?