You can use SQL queries to modify the contents of a database. If there
are indices defined on the table, SQL will automatically update them to reflect
the changes. If there are any data or referential integrity constraints defined,
SQL will automatically enforce them.
INSERT INTO MyApp.Product
(Name,SKU,Price)
VALUES ('Ginsu','DPV1486',22.95)