Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

sql update

Updates existing data in a table.
Example: Updates the mileage and serviceDue values for a vehicle with an
id of 45 in the cars table.
UPDATE cars
SET mileage = 23500, serviceDue = 0
WHERE id = 45;
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #sql #update
ADD COMMENT
Topic
Name
3+7 =