sql adding a record code example
Example 1: how to add records to sql table
INSERT INTO Customer (FirstName, LastName, City, Country, Phone)
VALUES ('Craig', 'Smith', 'New York', 'USA', 1-01-993 2800)
Example 2: sql add
Adds a new column to an existing table.
Example: Adds a new column named ‘email_address’ to a table named
‘users’.
ALTER TABLE users
ADD email_address varchar(255);