繁体   English   中英

无法使用 MySQL 查询检查两列内的值

[英]Could not check value within two column using MySQL query

我面临一个问题。 我需要使用 PHP 和 MySQL 检查应该出现在两列值中的值。 我在下面解释我的表格。

id      zip_from               zip_to

     1        751001                751030

db_邮政编码:

$post_code='751010';
$sql="select * from db_postcode where zip_from >='".$post_code."' and zip_to='".$post_code."'";
$sqlpin=mysqli_query($conn,$sql);
if (mysqli_num_rows($sqlpin) > 0) {
    $data=array("status"=>"Success","msg"=>"Product is available for this postcode");
}else{
    $data=array("status"=>"Failed","msg"=>"Product is not available for this postcode");
}
echo json_encode($data);

在这里,我收到消息{"status":"Failed","msg":"Product is not available for this postcode"}这是错误的,因为代码751010存在于751001-751030 在这里,我需要检查用户给定的值是否应该存在于这两列中。

你的比较写错了,你想要的是检查$post_code是否在zip_fromzip_to之间:

$sql="select * from db_postcode where '$post_code' between zip_from and zip_to";

请注意,这仅在所有zip_fromzip_to$post_code值的长度相同$post_code ,否则您将遇到字符串比较中的问题, 2 > 100000 如果它们的长度不同,则应将它们转换为整数以进行比较。

好吧,您的查询应该是这样的:

$sql="select * from db_postcode where ".$post_code." BETWEEN zip_from and zip_to";

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM