mySQL Workbench で同じ要求を使用すると、結果の数は 41100 です。私のスクリプトでは、数は 1015 です。コードにエラーはありません (表示するために die を使用します)。この違いの原因は何ですか?
# Create the statement
# select all id in table contacts
$statement = "select distinct contacts.id from $database.contacts";
# Prepare and execute the SQL query
$sqlQuery = $connectGrc->prepare($statement)
# Execute the statement
$sqlQuery->execute()
# Make id in array
while($oneId = $sqlQuery->fetchrow_array())
{
push(@ArrayId,$oneId);
}