fairly new to mysql, and i've been searching online but haven't found anything.
i've got an index of a few values in my table, and I did a bulk
mysql returned that 211,000 rows where updated,
but doing a query of
returns 21,000 rows
while
returns 119,000 rows.
do i need to somehow refresh the index? I'm not sure why these changes are not showing up.
i've got an index of a few values in my table, and I did a bulk
Code:
UPDATE number SET accuracy = '0' WHERE accuracy = '3'
but doing a query of
Code:
SELECT COUNT(*) FROM number WHERE accuracy = '0'
while
Code:
SELECT COUNT(*) FROM number WHERE accuracy = '3'
do i need to somehow refresh the index? I'm not sure why these changes are not showing up.
Comment