I want to insert values into a table whoz table column name end with "_old"
INSERT INTO table_name VALUES(1,2,3) WHERE column LIKE '%_old%' doesn't work
I want to insert values into a table whoz table column name end with "_old"
INSERT INTO table_name VALUES(1,2,3) WHERE column LIKE '%_old%' doesn't work