I want to update image path in MySQL table. Table schema is this:
table_brands - brand_id, brand_name, brand_image_path
Currently path is stored as-
`images/1.png`
`images/2.png`
I want to make it as
`images/brands/1.png`
`images/brands/2.png`
Also for some entries path is stored as
`images/brands/1.png`
`images/brands/2.png`
so changes should not be done for such entries.
Can someone help me?