我在这里有一个关于 Indexen 的小练习,但我不知道如何去做。
What is the access path for:
SELECT instituteID, totalPrice
FROM Purchases_XX
WHERE totalPrice > 59 AND spDateID = 2
if you get this index:
create index i_purchase1 on Purchases (instituteID,spDateID, totalPrice)
And what is the access path for:
SELECT *
FROM Purchases_XX
WHERE totalPrice > 59
if you get this index:
create index i_purchase1 on Purchases (instituteID,spDateID, totalPrice)
就像你可以看到它是 2 个不同的练习一样,我刚刚学会了如何制作索引,它可以让你的研究更快。但我坚持“什么是访问路径”
如果您有任何想法,您可以自由发布。提前谢谢。