gpt4 book ai didi

php - PostgreSQL 搜索查询 - 检查空字段

转载 作者:行者123 更新时间:2023-11-29 14:23:16 25 4
gpt4 key购买 nike

我正在尝试创建具有多个条件字段的搜索系统。我的问题是如何处理空条件字段(被用户省略)。我需要检查变量是否为空以实现 AND 条件。在我的例子中,姓氏是必需的,所以我只需要检查 id 名字和 ID 不是空字段:

$query ="SELECT first_name, last_name FROM students  WHERE last_name ILIKE '%$last_name%' ";


if(isset($_GET['$first_name']))
$condition[]="first_name ILIKE '%$first_name'";

if(isset($_GET['$ID']))
$condition[]="ID = '$ID'";



if(!empty($condition))
$query .= implode(' AND ',$condition);

$result = pg_query($query);

这行不通。

最佳答案

我认为你缺少一个 AND

if(!empty($condition))   
$query .= ' AND '.implode(' AND ',$condition);

关于php - PostgreSQL 搜索查询 - 检查空字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13776347/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com