SQL INSERT

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Overview

INSERT INTO person (id, name) VALUES (1, 'Binh Ngo');
PostgreSQL MySQL

The column names and the values provided must correspond in number and type. The INSERT statement may not contain a WHERE clause.