我很抱歉这个令人困惑的问题标题。我不知道如何在一个问题中说出来。目前我的陈述是:
$stmt = $conn->prepare('SELECT * FROM accounts where isonline=1 and where!=clientid<>:clientid');
$stmt->bindParam(':clientid', $client);
$stmt->execute();
我正在尝试接收服务器上所有没有特定客户端代码的在线用户的数据
答案 0 :(得分:2)
您需要处理where子句。它应该只使用一次......
where isonline = 1 AND clientid <> :clientid