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.
假设我有一张桌子
股票代码、日期时间、价格
我想执行一个基本查询,例如查找给定股票在给定日期的 12.00 PM 到 3.00 PM 之间的最高价格。目前我索引:
DATETIME 细化到毫秒级别,换句话说,基本上没有重复数据。对于我希望执行的查询类型,是否有更好的索引方法?或者更一般地说,我可以使用更好的模式吗?
我想说你的方法很好,除了价格指数,因为日期时间足够细化,每个股票代码+日期时间组合不会有超过一个(或两个或可能三个)价格条目。
这只是为了支持您上面描述的操作,如果您有其他操作,您可能需要(很可能)其他东西。