gpt4 book ai didi

PHP PDO - 从查询中排除特定行

转载 作者:行者123 更新时间:2023-11-29 12:41:58 25 4
gpt4 key购买 nike

我正在使用 PDO 连接到我的数据库。我想执行查询并仅从查询中排除特定行。我不知道该怎么做。

根据我从另一个问题得到的建议,我发布了这是我当前的解决方案,但它不起作用

$queryProfileCode = $dbh->prepare("SELECT profile_code FROM tableBusinessProfiles WHERE profile_code = ? AND NOT EXISTS(SELECT * FROM tableBusinessProfiles WHERE profile_code = $businessProfileIDUrl)");
$queryProfileCode->bindValue(1,$profileCode);
$queryProfileCode->execute();
$resultTableProfileCode = $queryProfileCode->fetchAll();

我找不到如何从查询中排除特定记录。

最佳答案

您的查询应该是

SELECT 
profile_code
FROM tableBusinessProfiles
WHERE
profile_code != $businessProfileIDUrl

SELECT 
profile_code
FROM tableBusinessProfiles
WHERE
id NOT IN ($businessProfileIDUrl);

MySQL “不等于” 运算符是 != 和 <>**

关于PHP PDO - 从查询中排除特定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25993331/

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