Could any one provide an example sql script that generates
Could anyone help me out. Is there a way to create a script that will generate insert statements for the table with already existing data?
There is a table with such a structure -> Country [id (int pk), name(nvarchar)] How will the script for generating such and output look like?
Output:
INSERT INTO country (NAME) VALUES ('canada');
INSERT INTO country (NAME) VALUES ('england');
INSERT INTO country (NAME) VALUES ('italy');
INSERT INTO country (NAME) VALUES ('spain');