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(empid) values(1);

How to insert all the columns


insert into employee values(1,'amit');
insert into employee values(2,'dhruv');
insert into emplyee values(3,'vikky');