Below is my SQL table
| ID | Value |
| 1 | A1 A2 A3 |
I would like to delete the A3 in the column: Value. Is there any method to do this?
Below is my SQL table
| ID | Value |
| 1 | A1 A2 A3 |
I would like to delete the A3 in the column: Value. Is there any method to do this?
There's no way to edit/remove part of string, you just need to update whole cell. It's up tou you, how you'll prepare update data in your code.
SQL:
update tablename set Value = 'A1 A2' where ID=1