MySQL Basic

Inserting data and retrieving data

views

09:03
In last lesson, we created a table with name “customer”. In this lesson, we will learn to insert some values to this table. First let us check the table parameters using DESCRIBE command. Now we will start inserting values to CUSTOMER table by using insert into (column_list) values (values) statement.