I'm trying to delete the rows of a table that correspond to the id (varchar) '938110842071146496', '938110904666853378', '938195226333777920', '938309442671665152', '938777508123734017'
For this I use the following SQL command:
DELETE FROM table WHERE id IN ('938110842071146496', '938110904666853378', '938195226333777920', '938309442671665152', '938777508123734017')
But it returns the following error:
# 1064 - Something is wrong in its syntax near 'WHERE id IN ('938110842071146496', '938110904666853378', '9381952263337779' in the Line 1
Does anyone know what is wrong?