其中单元格不等于.. MySQL 查询 (!=)
有人能告诉我如何执行 MySQL 查询来选择 id != 1 的所有行吗?
请给我一个例子。
Can someone tell me how I can do a MySQL query that selects all row with an id != 1?
Please give me example of it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您没有提供太多细节,但您自己的标题似乎回答了问题:使用
WHERE id != 1
。它在 MySQL 中工作,但 SQL 标准是<>
,而不是!=
。You didn't provide much detail, but it seems your own title answers the question: use
WHERE id != 1
. It works in MySQL, but the SQL standard is<>
, not!=
.在标准 ANSI SQL 中,不等于表示为:
<>
In standard ANSI SQL, not equal is represented as:
<>
试试这个:
您还可以使用
!=
代替<>
Try this one:
You also can use
!=
instead of<>
使用
<>
或!=
,两者都适用于 MySQLUse
<>
or!=
, both works for MySQL