当我在 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);
}