Calculate the Ratio with CASE WHEN in SQL
作者:XD / 发表: 2020年12月29日 05:18 / 更新: 2020年12月29日 05:18 / 编程笔记 / 阅读量:2047
Here is the SQL sentence to calculate the ratio with the case when.
SELECT sku, SUM(CASE WHEN sales_qty='None' THEN 1 END)*1.00/SUM(1)
FROM table
GROUP BY sku;
相关标签