MySQL语法(其中== 1)和(where = / = abc)

时间:2016-08-31 02:54:03

标签: mysql where

我很抱歉这个令人困惑的问题标题。我不知道如何在一个问题中说出来。目前我的陈述是:

$stmt = $conn->prepare('SELECT * FROM accounts where isonline=1 and where!=clientid<>:clientid');
$stmt->bindParam(':clientid', $client);
$stmt->execute();

我正在尝试接收服务器上所有没有特定客户端代码的在线用户的数据

1 个答案:

答案 0 :(得分:2)

您需要处理where子句。它应该只使用一次......

where isonline = 1 AND clientid <> :clientid