MySQL 选择多个值
这里完全没有想法,可能需要一个简单的解决方案。
基本上我想要的查询是:
SELECT * FROM table WHERE id = 3,4
我只想选择 ID 为 3 和 4 的行,或者名称为“andy”和“paul”
非常感谢您的回答
Totally out of ideas here, could be needing a simple solution.
Basically my desired query is :
SELECT * FROM table WHERE id = 3,4
I want to select only the row which has ID 3 and 4, or maybe name "andy" and "paul"
Thank you very much for the answer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
或
:或等效的
in
:Try
or
:Or the equivalent
in
:试试这个 -
Try this -