when i update a table like this, it worls
but when i update it as a string, it doesnt workCode:UPDATE tableName SET itemID=523 WHERE descript_1 LIKE 'nameOfItem';
what is going on?Code:UPDATE tableName SET differentItemID='someString' WHERE descript_1 LIKE 'nameOfItem';
