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.
Kidd_Ip
Sep 05, 2025MVP
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)