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

18 lines
3.2 KiB
Transact-SQL
Raw Permalink 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].[Comment] ON
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (1, 1, 1, N'Love the pics! :)', NULL)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (2, 2, 1, N'thx', 1)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (3, 4, 1, N'Amazing', NULL)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (4, 2, 1, N'thanks :)', 3)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (5, 3, 2, N'A true classic.', NULL)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (6, 1, 2, N'Agree!', 5)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (7, 12, 5, N'idk about this one...', NULL)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (8, 10, 7, N'Interesting, thanks for the tip!', NULL)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (9, 5, 11, N'Such a good show!', NULL)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (10, 3, 12, N'Tunes!', NULL)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (11, 15, 17, N'Thanks for the upload!', NULL)
INSERT [dbo].[Comment] ([CommentID], [UserID], [PageID], [Content], [ParentComment]) VALUES (12, 3, 17, N'Ta!', NULL)
SET IDENTITY_INSERT [dbo].[Comment] OFF