我有一个 mysql 数据库,其结构如下:
表transactions
:
id paymentid clientid status
------------------------------
1 001 12345 0
2 002 11223 1
3 003 12345 4
4 004 12345 4
什么是在 mysql 中运行查询的最有效方法是给我某个客户 ID 支付状态为 4 的次数?
喜欢:
select clientid, count(*)
where status = 4
但仅返回特定客户端 ID 的计数。