SQL : How to write insert Query?
Motivation
I daily read blogposts and one of the guy with 700 post motivated me write every single day.
How to insert data in a table
insert into employee (empid,empname) values(1,'sandy');
How to insert data only in some columns
insert into employee...
hashcodehub.hashnode.dev1 min read