Y2S1-Database_Design/SQL/individual_inserts/8 - Production.Table.sql
2020-06-07 22:29:59 +01:00

9 lines
752 B
Transact-SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

USE [MediaLibrary]
GO
SET IDENTITY_INSERT [dbo].[Production] ON
INSERT [dbo].[Production] ([ProductionID], [ProductionName]) VALUES (1, N'Warner Bros')
INSERT [dbo].[Production] ([ProductionID], [ProductionName]) VALUES (2, N'Dreamworks')
INSERT [dbo].[Production] ([ProductionID], [ProductionName]) VALUES (3, N'Disney')
SET IDENTITY_INSERT [dbo].[Production] OFF