UPDATE examples
Written by: maffelu , 2009-04-16 21:21:52
+--------------------+--------------------+--------------------+--------------------+
|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 |
+-----------------------------------------------------------------------------------+
UPDATE stores
SET store_sales=1250, store_location='Copenhagen'
WHERE store_name='Bobs Boutique'
+--------------------+--------------------+--------------------+--------------------+
|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 1250 2009-01-01 00:00:00 Copenhagen |
|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_sales=store_sales - 200
WHERE store_location='Stockholm'
+--------------------+--------------------+--------------------+--------------------+
|store_name |store_sales |store_updates |store_location |
+____________________+____________________+____________________+____________________+
|Hanks Hardware 2300 2009-01-01 00:00:00 Stockholm |
|Santos SuperStore 750 2008-12-01 00:00:00 Oslo |
|Bobs Boutique 1250 2009-01-01 00:00:00 Copenhagen |
|Pattyïs Pantstore 850 2008-12-15 00:00:00 Stockholm |
|Hanks Hardware 2050 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
Maffelu
Creator and admin of MorkaLork.com.
Started programming in HTML back when frames and tables was the way to design a page, moved on to Pascal/Delphi, PHP, javascript/jQuery, VB.NET/C#, Java and C++.
Currently studies .NET (in general) focusing on ASP.NET.