Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想获取保存在 mysql 表中的负数的计数。例如:我想获取上个月内账户的提款总数和价值。
我知道这可以使用额外的行来完成。但我想在不改变表结构的情况下做到这一点。我尝试使用“WHERE Amount < 0”,但没有奏效。请提供任何帮助。
就像是:
SELECT COUNT(*) FROM Account WHERE Amount<0;
这对我有用
select count(0) from test where id < 0