AlexTardif
Programmer
Hey there,
I got a table which has around 2 millions inserts each day (which means more than 20 inserts each second). Also, this table has a timestamp field.
What will happen to this query? Will it run endlessly?
Thanks for your answers!
Alex
I got a table which has around 2 millions inserts each day (which means more than 20 inserts each second). Also, this table has a timestamp field.
What will happen to this query? Will it run endlessly?
SQL:
SELECT COUNT(*)
FROM my_table
WHERE TS_FIELD > '2016-02-01 00:00:00.000000'
Thanks for your answers!
Alex