Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 297 Bytes

insert.rst

File metadata and controls

21 lines (13 loc) · 297 Bytes

INSERT

Contents

INSERT INTO <table_name> ( <col> , ... )
VALUES ( <value> , ... )

The number of col and value must match.

INSERT INTO products (title, price) VALUES ('Instant Pot', 144.89);