How to insert data in your table by using SQL

Suppose you have a table name employee and the attributes are id, name, address. So to insert data in your table write the following code.
INSERT INTO EMPLOYEE 
VALUES(1, ' RAKIB' , 'UTTARA');
Now to see your table write the following code.
SELECT * FROM EMPLOYEE;
and the output is given below:

No comments:

Post a Comment