vote up 1 vote down star

I was playing with the following, but it's not there just yet.

ALTER TABLE `product_price` CHANGE `price` = `price` - 20;
flag
ALTER TABLE is for changing the structure of the table,. For changing record values, use an UPDATE statement as Paolo showed – tehvan Feb 23 at 7:42
I updated my post to point this out, tehvan, hope you don't mind. :) – Paolo Bergantino Feb 23 at 7:46
Could it be that this is homework? – Tomalak Feb 23 at 8:13

2 Answers

vote up 12 vote down

What you're looking for is this:

UPDATE product_price SET price = price - 20;

So if your data looks like this:

| id | price         |
|----|---------------|
| 1  | 25.20         |
| 2  | 26.50         |
| 3  | 27.00         |
| 4  | 24.25         |

It will turn it to this:

| id | price         |
|----|---------------|
| 1  | 5.20          |
| 2  | 6.50          |
| 3  | 7.00          |
| 4  | 4.25          |

As tehvan pointed out in your comments, ALTER is used when you want to change the structure of the table. From the docs:

ALTER TABLE enables you to change the structure of an existing table. For example, you can add or delete columns, create or destroy indexes, change the type of existing columns, or rename columns or the table itself. You can also change the comment for the table and type of the table.

If you want to update information in any way you want to use the UPDATE statement.

link|flag
You can even drop the quotes – tehvan Feb 23 at 7:41
@Paolo, you forgot the decimal point. You probably mean price = price - 0.20 – Lieven Feb 23 at 7:56
The example you're using is currently incorrect, the SQL says to subtract 20 and the example data is subtracting 0.20. The column name is also different. – Chad Birch Feb 23 at 7:57
Whoooops. My bad. Give me a break it's 3 in the morning. :) – Paolo Bergantino Feb 23 at 8:01
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.