0

我想搜索 MySQL 数据库,将列列表与数组进行比较。我将如何做到这一点,可能都在 MySQL 中?

这是我想在 PHP 中做的事情:

<?php
$array = array("a", "b", "c", "d");
// 'c' doesn't exist in the database
$result = $this->mysqli->query("Query");
// Result should be array("a", "b", "d")
?>

我该怎么做?

4

2 回答 2

0

您可以使用IN 子句做到这一点。

SELECT * FROM <table> WHERE <col> IN <array>
于 2012-11-19T00:51:28.653 回答
0

试试这个:

// The array
$array = array("a", "b", "c", "d");

// This takes the array and puts it into a string like "a,b,c,d"
$array_for_query = implode(',', $array);

$result = $this->mysqli->query("SELECT * FROM table WHERE the_letter IN ({$array_for_query})");

分别用您的表和列名替换table和。the_letter

于 2012-11-19T00:52:11.350 回答