This document discusses various MySQL INSERT statements:
- INSERT inserts one or more rows into a table and its syntax.
- INSERT INTO SELECT inserts rows selected from another table.
- INSERT ON DUPLICATE KEY UPDATE inserts a row and updates it if a duplicate key occurs.
- INSERT IGNORE ignores errors on duplicate keys and inserts valid rows.
It also covers the MySQL UPDATE statement for modifying data in tables and provides examples of their usage.