Skip to content

HIGH_PRIORITY

INSERT HIGH_PRIORITY INTO Customers (CustomerName, ContactName, Address, PostalCode, City)
VALUES ('Cardinal', 'Tom', '678 Bris Ave', '40032', 'Brooklyn');
Query OK, 1 row affected

The HIGH_PRIORITY keyword in MySQL increases the priority of an INSERT task. This example code executes a HIGH_PRIORITY INSERT that puts a new row of data into the ‘Customers’ table.