我正在计算废品率。所以我的输出会给出类似的结果。
Scrap Product Total Count
-------------------
Product Total Count
我有两张table:
Product
--------
Barcode 1
Barcode 2
Barcode 3
Barcode 4
废品
Barcode 2
Barcode 4
我一直在尝试使用pivot操作符和下面的查询进行不同的查询。实现这一目标的最佳方法是什么?
select (
select count(barcode)
FROM ScrapProduct)
/
(
select count(barcode)
FROM Product) as total_count
1条答案
按热度按时间bd1hkmkf1#
你的代码基本上没问题。但是整数除法会有问题。所以,你的数字需要小数。我发现这是最简单的方法:
如果需要三列,则将子查询移动到
from
条款: