具有相同数据的两个单独的SQL语句返回不同的结果

时间:2016-11-21 12:11:19

标签: php mysql

我想要做的是将域列表发送到我的php脚本($_POST['domains']),然后从域名类似的表中获取每个员工。

这是一个使用for循环执行多个查询的示例。这是标准的,但需要更长的时间:

    $domains = explode(",", $_POST['domains']);
    $returnObj = new stdClass();
    $employees = [];
    foreach($domains as $domain) {
        $domainLike = "%".$domain;
        $query = $conn_databank->prepare("SELECT employee_id FROM employee WHERE domain LIKE ?");
        $query->bind_param('s', $domainLike);
        $query->execute();
        $result = $query->get_result();
        while($row = $result->fetch_assoc()) {
            array_push($employees, $row['employee_id']);
        }
    }
    $returnObj->employees = $employees;
    echo json_encode($returnObj);

现在,通过一组数据,我得到了大约3900个结果,这是正确的。

我正在尝试的另一种方法是使用LIKE ? OR LIKE ?创建一个动态预准备语句,该语句执行速度更快但不会返回几乎同样多的结果(大约950):

    $queryString = "SELECT employee_id FROM employee";
    $actualQuery = "SELECT employee_id FROM employee";
    $bindVariables = [];
    for($i = 0; $i < count($domains); $i++) {
        $domainLike = "%".$domains[$i];
        if($i == 0) {
            $queryString .= " WHERE (domain LIKE ?";
            $actualQuery .= " WHERE (domain LIKE '".$domainLike."'";
        }
        else {
            $queryString .= " OR domain LIKE ?";
            $actualQuery .= " OR domain LIKE '".$domainLike."'";
        }
        if($i == count($domains) - 1) {
            $queryString .= ")";
            $actualQuery .= ")";
        }
        array_push($bindVariables, $domainLike);
    }

    $variables = count(explode("?", $queryString)) - 1;
    $bindings = [];
    $bindString = "";
    for($i = 0; $i < $variables; $i++)
        $bindString .= "s";
    array_push($bindings, $bindString);
    foreach($bindVariables as $variable)
        array_push($bindings, $variable);
    echo $actualQuery;
    $query = $conn_databank->prepare($queryString);
    call_user_func_array(array($query, 'bind_param'), makeValuesReferenced($bindings));
    $query->execute();
    $result = $query->get_result();
    $returnObj = new stdClass();

    $employees = [];
    while($row = $result->fetch_assoc()) {
        $employee = new stdClass();
        $employee->id = $row['employee_id'];
        array_push($employees, $employee);
    }
    $returnObj->employees = $employees;
    echo json_encode($returnObj);

忽略$actualQuery变量,这只是为了查看它是否正在构建查询。

1 个答案:

答案 0 :(得分:1)

没有例子,你的问题有点模糊。但是,很明显,一个域可以匹配多个like条件。例如:xxx@gmail.com将匹配&#34; mail.com&#34;和&#34; gmail.com&#34;。

您没有足够的信息来判断这是否有问题。因此,一个想法是确保域完整。所以,&#34; @ gmail.com&#34;而不是&#34; gmail&#34;并使用email like concat('%', $domain)

这可能不起作用,因为你可能需要更多的灵活性(比如,匹配&#34; gmail.co.uk&#34;)。如果是这种情况,则OR可能更正确,因为它不包含重复项。