Forum Discussion
Arvind1201
May 08, 2023Copper Contributor
Table format
Dear all,
I want to insert a table type informations for list of items, which includes Name, Type, Cost, Qty.
Is there any plug in available to do so?
Regards,
Friendlyneigbourhood.
1 Reply
Sort By
If you are using Azure Data Studio, you can:
Use the Database Administration Tool Extensions plugin, which includes a Generate Scripts Wizard:
- Create and insert table data in SQL format
- Export or copy rows like:
INSERT INTO [dbo].[Items] ([Name], [Type], [Cost], [Qty]) VALUES ('Widget', 'Tool', 12.99, 5)