I am trying to run a query to insert "/2/3/" at the start of values in column "Value" where the values inside column "attribute_id" equals "703". I know basic MYSQL but having some issues structuring this.So, any help is appreciated.
I am trying to run a query to insert /2/3/ at the start of
Share
UPDATE table_name SET value=CONCAT(‘/2/3’,value) WHERE attribute_id = 703
N.B:Replace table_name with the name of your table