SQL Server: How to Insert Data into a Table Using SQL Script

preview_player
Показать описание
In this video we take a look at how to insert data into a table in SQL Server using SQL script within SQL Server Management Studio.

Links:-

Script:-

INSERT INTO [dbo].[Config]([Key], [Value])
VALUES
('Key1', 'Value1'),
('Key2', 'Value2'),
('Key3', 'Value3')
GO

If you enjoyed the video don't forget to like, comment and subscribe. Thanks for watching.
Рекомендации по теме
Комментарии
Автор

How do you insert data from another table into the table you just created?

AlphaRhoDelta