F How to insert values in Table using SQL Statement | CodeTheta

How to insert values in Table using SQL Statement

April 12, 2020

Syntax : 
INSERT INTO Students
(StudentID, Firstname, Lastname, Phone, Country)
VALUES
(1, 'Abhi', 'Das', '8100122450', 'India');

Output :

IDE Used To Test This Code : Microsoft SQL Server 2014.

Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us.We will reply you as soon as possible.

Post a Comment