telesar
Новичок
Разве можно делать count(*) совместно с WHERE ?Автор оригинала: chira
$query = "select count(*) from tabl1 where login = '$login'";
Я думал нельзя:
COUNT(*) is optimized to return very quickly if the SELECT retrieves from one table, no other columns are retrieved, and there is no WHERE clause.