I was playing with the following, but it's not there just yet.
ALTER TABLE `product_price` CHANGE `price` = `price` - 20;
|
|
|||||||
|
|
|
What you're looking for is this:
So if your data looks like this:
It will turn it to this:
As tehvan pointed out in your comments, ALTER is used when you want to change the structure of the table. From the docs:
If you want to update information in any way you want to use the UPDATE statement. |
||||||||
|
|
|
As Paolo Bergantino mentioned, you tried to alter the structure of the table rather than the data contained in it. The SQL is made up of different parts, each responsible for something different. For defining your data structures (tables, views, etc.) you use the DDL (Data Definition Language). For manipulating data on the other hand, you use the DML (Data Manipulation Language). This site shows the different parts of the SQL along with examples. |
||
|
|