HIGH_PRIORITY
Example
Section titled “Example”INSERT HIGH_PRIORITY INTO Customers (CustomerName, ContactName, Address, PostalCode, City)VALUES ('Cardinal', 'Tom', '678 Bris Ave', '40032', 'Brooklyn');Output
Section titled “Output”Query OK, 1 row affectedExplanation
Section titled “Explanation”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.