Skip to content

DELAYED

INSERT DELAYED INTO my_table
(name, email)
VALUES ('John Doe', 'john.doe@example.com');
Query OK, 1 row affected (0.00 sec)

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.