Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

sql insert

INSERT INTO sakila.actor
    (first_name, last_name)  # column names to insert into
VALUES
    ("Ryan", "Desmond");  # values to insert into those columns (in the same order)


# in SQL, the hashtag or pound sign is the comment symbol, just FYI
Source by platform.codingnomads.co #
 
PREVIOUS NEXT
Tagged: #sql #insert
ADD COMMENT
Topic
Name
9+9 =