+--------------------+--------------------+--------------------+
|store_name |store_sales |store_updates |
+____________________+____________________+____________________+
|Hanks Hardware 2500 2009-01-01 00:00:00 |
|Santos SuperStore 750 2008-12-01 00:00:00 |
|Bobs Boutique 1050 2009-01-01 00:00:00 |
|Pattyïs Pantstore 1050 2008-12-15 00:00:00 |
|Hanks Hardware 2250 2008-01-01 00:00:00 |
+--------------------------------------------------------------+
ALTER TABLE stores
ADD store_location VARCHAR(150)
+--------------------+--------------------+--------------------+--------------------+
|store_name |store_sales |store_updates |store_location |
+____________________+____________________+____________________+____________________+
|Hanks Hardware 2500 2009-01-01 00:00:00 NULL |
|Santos SuperStore 750 2008-12-01 00:00:00 NULL |
|Bobs Boutique 1050 2009-01-01 00:00:00 NULL |
|Pattyïs Pantstore 1050 2008-12-15 00:00:00 NULL |
|Hanks Hardware 2250 2008-01-01 00:00:00 NULL |
+-----------------------------------------------------------------------------------+
ALTER TABLE stores
ADD store_location VARCHAR(150)
DEFAULT 'Stockholm'
+--------------------+--------------------+--------------------+--------------------+
|store_name |store_sales |store_updates |store_location |
+____________________+____________________+____________________+____________________+
|Hanks Hardware 2500 2009-01-01 00:00:00 Stockholm |
|Santos SuperStore 750 2008-12-01 00:00:00 Stockholm |
|Bobs Boutique 1050 2009-01-01 00:00:00 Stockholm |
|Pattyïs Pantstore 1050 2008-12-15 00:00:00 Stockholm |
|Hanks Hardware 2250 2008-01-01 00:00:00 Stockholm |
+----------------------------------------------------------------------------------+
UPDATE stores
SET store_location = 'Oslo'
WHERE store_name='Santos SuperStore'
+--------------------+--------------------+--------------------+--------------------+
|store_name |store_sales |store_updates |store_location |
+____________________+____________________+____________________+____________________+
|Hanks Hardware 2500 2009-01-01 00:00:00 Stockholm |
|Santos SuperStore 750 2008-12-01 00:00:00 Oslo |
|Bobs Boutique 1050 2009-01-01 00:00:00 Stockholm |
|Pattyïs Pantstore 1050 2008-12-15 00:00:00 Stockholm |
|Hanks Hardware 2250 2008-01-01 00:00:00 Stockholm |
+-----------------------------------------------------------------------------------+
There are no comments on this article.
If you have any question or just want to leave a message, just fill out the form below!
Your e-mail will not be visible in your post, it is for validation reasons only