Skip to content

VALUES

INSERT INTO employees (firstname, lastname, age)
VALUES ('John', 'Doe', 30);
Query OK, 1 row affected (0.01 sec)

The provided MySQL statement inserts a new row into the employees table. The row’s values for firstname, lastname, and age columns are ‘John’, ‘Doe’, and 30, respectively. The output indicates that the operation was successful, with one row being affected.