假设我们做了
select * from Products where category = "electronics"
与
select name, price from Products where category = "electronics"
它对数据存储定价有何影响?
从Google Cloud Platform doc开始编写: 不使用distinct on子句的投影查询。此类查询被视为查询本身的单个实体。个别结果被视为小型操作。
答案 0 :(得分:0)
在定价方面需要权衡两件事。投影查询需要一个复合索引,这将导致存储成本增加,但O(num results * read price)查询将更便宜。