vote up 1 vote down star
2

This is the MySQL table structure that I have:

itemID (BIGINT)
userID (BIGINT)
wasAdded (DATETIME)

I need to get the number of items introduced in the current day, by the X userID

What would be the most efficient way to do this?

Thanks

flag

66% accept rate

3 Answers

vote up 2 vote down check

The best way would be to add an index that covers userID and wasAdded, then you can do

SELECT COUNT(*) FROM my_table WHERE userID = 'X' AND wasAdded BETWEEN '2008-01-01 00:00:00' AND '2008-01-01 23:59:59';

This shouldn't even need to read from the table, as all the data it needs is in the index.

link|flag
vote up 0 vote down
SELECT userId, COUNT(*) 
FROM my_table
WHERE '2008-01-01' <= wasAdded AND wasAdded < '2008-01-01' + 1
GROUP BY userId
link|flag
vote up 0 vote down

This should do the trick :

SELECT COUNT(itemID) FROM 'tableName' WHERE TO_DAYS(wasAdded) = TO_DAYS(NOW()) AND userID = X

However, make sure to have an index on wasAdded and userID !

link|flag
Are you sure MySQL will be able to use an index on wasAdded if you use TO_DAYS? If you think it will, I'd be interested in reading a reference – Greg Jan 21 at 17:29
No I'm not, you're absolutely right. Using TO_DAYS() will make the index useless regarding to my query. Thanks for the correction ! – Wookai Jan 21 at 19:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.