选择除以 2 后余数(模)为 1 的行?

发布于 2024-09-24 13:51:57 字数 84 浏览 2 评论 0原文

选项中有一个列保存一个整数。我只想在该值 % 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

栩栩如生 2024-10-01 13:51:57

MySQL、SQL Server、PostgreSQL、SQLite 支持使用百分号作为模数:

WHERE column % 2 = 1

对于 Oracle,您必须使用 MOD功能

WHERE MOD(column, 2) = 1

MySQL, SQL Server, PostgreSQL, SQLite support using the percent sign as the modulus:

WHERE column % 2 = 1

For Oracle, you have to use the MOD function:

WHERE MOD(column, 2) = 1
空气里的味道 2024-10-01 13:51:57

至少某些版本的 SQL(Oracle、Informix、DB2、ISO 标准)支持:

WHERE MOD(value, 2) = 1

MySQL 支持 '%' 作为模数运算符:

WHERE value % 2 = 1

At least some versions of SQL (Oracle, Informix, DB2, ISO Standard) support:

WHERE MOD(value, 2) = 1

MySQL supports '%' as the modulus operator:

WHERE value % 2 = 1
痴者 2024-10-01 13:51:57

注意: 忽略这个答案,因为我一定误解了这个问题。

select *
  from Table
  where len(ColName) mod 2 = 1

确切的语法取决于您使用的 SQL 风格。

Note: Disregard this answer, as I must have misunderstood the question.

select *
  from Table
  where len(ColName) mod 2 = 1

The exact syntax depends on what flavor of SQL you're using.

少跟Wǒ拽 2024-10-01 13:51:57

select * from table where value % 2 = 1 在 mysql 中工作正常。

select * from table where value % 2 = 1 works fine in mysql.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文