Skip to Content
MySQL 8 Cookbook
book

MySQL 8 Cookbook

by Karthik Appigatla
January 2018
Intermediate to advanced
446 pages
12h 57m
English
Packt Publishing
Content preview from MySQL 8 Cookbook

Inserting

The INSERT statement is used to create new records in a table:

mysql> INSERT IGNORE INTO `company`.`customers`(first_name, last_name,country)VALUES ('Mike', 'Christensen', 'USA'),('Andy', 'Hollands', 'Australia'),('Ravi', 'Vedantam', 'India'),('Rajiv', 'Perera', 'Sri Lanka');

Or you can explicitly mention the id column, if you want to insert the specific id:

mysql> INSERT IGNORE INTO `company`.`customers`(id, first_name, last_name,country)VALUES (1, 'Mike', 'Christensen', 'USA'),(2, 'Andy', 'Hollands', 'Australia'),(3, 'Ravi', 'Vedantam', 'India'),(4, 'Rajiv', 'Perera', 'Sri Lanka');Query OK, 0 rows affected, 4 warnings (0.00 sec)Records: 4 Duplicates: 4 Warnings: 4

IGNORE: If the row already exists and the IGNORE clause is given, ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

MySQL Cookbook

MySQL Cookbook

Paul DuBois
Advanced MySQL 8

Advanced MySQL 8

Eric Vanier, Birju Shah, Tejaswi Malepati

Publisher Resources

ISBN: 9781788395809Other