gpt4 book ai didi

php - 从表中选择,其中 a 列不等于 b 列(在同一个表上)且 tableID = 2

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

从表中选择,其中 a 列不等于 b 列(在同一个表上)且 tableID = 2

任何人都可以给我一个简单的代码。

<?php
$query_myslot = "select from table where column a is not equal column b (on same table) and tableID = 2";
$myslot = mysql_query($query_myslot, $localhost) or die(mysql_error());
$row_myslot = mysql_fetch_assoc($myslot);
$totalRows_myslot = mysql_num_rows($myslot);
?>

最佳答案

尝试按如下方式更改您的查询:

select * from tablename where column1 <> column2  and tableID = 2

关于php - 从表中选择,其中 a 列不等于 b 列(在同一个表上)且 tableID = 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35240281/

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