I've Help table in our Dev Database and I'm just wondering how I can create script table data so that I can easily copy all my Help table data and paste it in our QA database Help Table?
I've used Simple Data Scripter extension but the output script is not the same format like what we have for other tables so just wondering if there is a way I can get the same data script format like the other for my Help Table.
// This is the original format that we have. I want the Help table to look like this too
--- Inserting Help type ---
insert into [dbo].HelpType (Id, Name) values(1, 'Help');
//This is what it look when I use Simple Data Scripter extension
--- Inserting Help ---
insert [Help] ([Id],[Name],[ParentId],[Text],[CreatedDate],[UpdatedDate],[Types])
select 1,'Deep Dive into Workspace',NULL,NULL,'2021-03-05 17:24:53.0000000',NULL,1 UNION ALL