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
|
2
|
This is the MySQL table structure that I have:
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
|
||
|
|
|
|
The best way would be to add an index that covers
This shouldn't even need to read from the table, as all the data it needs is in the index. |
||
|
|
|
|
|
||
|
|
|
|
This should do the trick :
However, make sure to have an index on |
||||
|