In my database I have a few records like these with 2 columns:
Id, Name,
11, Meal 997,
12, Meal 998,
13, Meal 999,
14, Meam 000,
15, Meam 001,
16, Meam 002,
But this was an issue in the application with the wrong data due to a logical error. How can we change the records containing Meam to Meal and also continue incrementing?
The above records should be like these:
11, Meal 997,
12, Meal 998,
13, Meal 999,
14, Meal 1000,
15, Meal 1001,
16, Meal 1002,
How can we change the database?
"Meam 001" will be in one columm
What would the query be?