mysql - Updating multiple rows in one column in a database -


i have database data

enter image description here

i want edit column lab_no , add 0 (0) after 8 records... how can because records many. thank you

assuming records begin epi8, can this:

update [tablename] set lab_no = replace(lab_no, 'epi8', 'epi80'); 

Comments

Popular posts from this blog

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -