Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

sql Update

UPDATE sakila.actor  # table to update
SET first_name = "Bryan", last_name = "Besmond"   # fields to be added/updated
WHERE actor_id = 201;   # boolean condition
Source by platform.codingnomads.co #
 
PREVIOUS NEXT
Tagged: #sql #Update
ADD COMMENT
Topic
Name
2+4 =