SQL INSERT: Difference between revisions
Jump to navigation
Jump to search
Tag: Reverted |
Tag: Manual revert |
||
Line 13: | Line 13: | ||
|} | |} | ||
The <code>INSERT</code> statement may not contain a <code>[[SQL_WHERE#Overview|WHERE]]</code> clause. | The <code>INSERT</code> statement may not contain a <code>[[SQL_WHERE#Overview|WHERE]]</code> clause. | ||
Revision as of 00:11, 23 May 2024
Internal
Overview
INSERT INTO person (id, name) VALUES (1, 'Binh Ngo');
PostgreSQL MySQL
The INSERT
statement may not contain a WHERE
clause.