DELAYED
Example
Section titled “Example”INSERT DELAYED INTO my_table(name, email)VALUES ('John Doe', 'john.doe@example.com');Output
Section titled “Output”Query OK, 1 row affected (0.00 sec)Explanation
Section titled “Explanation”The DELAYED keyword in the INSERT statement of MySQL is used to queue rows for insertion, and then return immediately, without waiting for the actual insertion. As a result, the query “Query OK, 1 row affected (0.00 sec)” gets displayed, meaning a row has been queued for insertion.