How can we insert data into a MySQL table?


For inserting data into a MySQL table we need to use INSERT INTO command. We must have to specify values for all the columns of the table in INSERT INTO command.

Syntax

INSERT INTO table_name values(value1,value2,…)

Example

Suppose we have a table named ‘Student’ with three columns ‘RollNo’, ‘Name’ and ‘Class’ then with the help of following query we can add new rows to the table −

mysql> INSERT INTO Student values(50,'Harshit',’B.tech’);
Query OK, 1 row affected (0.07 sec)

mysql> INSERT INTO Student values(56,'Amit',’M.tech’);
Query OK, 1 row affected (0.05 sec)

mysql> Select * from Student;
+---------+-------------+-----------+
| RollNo  | Name        | Class     |
+---------+-------------+-----------+
|  50     | Harshit     | B.tech    |  
|  56     |  Amit       | M.tech    |
+---------+-------------+-----------+
2 rows in set (0.00 sec)

Updated on: 20-Jun-2020

349 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements