所以我在这里创建了一个小东西:
http://sqlfiddle.com/#!2/d7a76/1
它在那里做了我想要的,但在应用于我的实际 PHP 时不起作用。加载时,HTML 页面在“bundle_lanes”SQL 数据库中的下拉列表中显示所有电缆编号。但最近我的客户现在希望电缆号码消失,如果它们已经存在于数据库“cabletypes”中。所以我需要一些方法来告诉 SQL 查找确切的电缆编号匹配,如果它们在两个表中都存在,则不要显示它们。我究竟做错了什么?它在 sqlfiddle 中工作。没有错误,当我运行 cableNumbers.php 和一个空的下拉框时只有空白结果。
HTML (index.php)
<body onload="cable_numbers(); company_name();">
<select id="cable_no" onchange="update_section_no();" return false;>
<option value="">Cable Number</option>
</select>
</body>
JAVASCRIPT
//Set Cable Numbers in DropDown
function cable_numbers() {
$.ajax({
url: './php/cableNumbers.php',
dataType: 'json',
success: function(mydata) {
var combo = document.getElementById("cable_no");
while (combo.firstChild) {
combo.removeChild(combo.firstChild);
};
var option = document.createElement("option");
for (var i = 0; i < mydata.length; i++) {
option = document.createElement("option");
option.text = mydata[i]['cable_no'];
option.value = mydata[i]['cable_no'];
try {
combo.add(option, null); //Standard
} catch (error) {
combo.add(option); // IE only
}
};
section_numbers();
}
});
};
PHP cableNumbers.php(SQL 查询所在的位置)
$sql = "SELECT DISTINCT cable_no FROM bundle_lanes
WHERE (cable_no) NOT IN (SELECT cable_no FROM cabletypes)
ORDER BY cable_no ASC";
$result = mysql_query($sql) or die ('Error'.mysql_error());
// If DB query successful then send data to calling routine.
if (mysql_num_rows($result) >= 1)
{
while ($row = mysql_fetch_array($result)) {
$array[] = $row;
}
print json_encode($array);
}