选择除以 2 后余数(模)为 1 的行?
选项中有一个列保存一个整数。我只想在该值 % 2 = 1 时选择该行。
我知道这可以在 2 个查询中完成,但是否可以在 1 个查询中完成?
There is a column in options that hold an integer. I want to select the row only if that value % 2 = 1.
I know this can be done in 2 queries but is it possible to do it in 1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
MySQL、SQL Server、PostgreSQL、SQLite 支持使用百分号作为模数:
对于 Oracle,您必须使用 MOD功能:
MySQL, SQL Server, PostgreSQL, SQLite support using the percent sign as the modulus:
For Oracle, you have to use the MOD function:
至少某些版本的 SQL(Oracle、Informix、DB2、ISO 标准)支持:
MySQL 支持 '%' 作为模数运算符:
At least some versions of SQL (Oracle, Informix, DB2, ISO Standard) support:
MySQL supports '%' as the modulus operator:
注意: 忽略这个答案,因为我一定误解了这个问题。
确切的语法取决于您使用的 SQL 风格。
Note: Disregard this answer, as I must have misunderstood the question.
The exact syntax depends on what flavor of SQL you're using.
select * from table where value % 2 = 1
在 mysql 中工作正常。select * from table where value % 2 = 1
works fine in mysql.