Received a query in this format for a data import...is there any equivelent in TSQL where you would only have to use "insert into blah" once? (so that I can convert this script)
insert into marital_status (id,description)
values
(1,'Married'),
(2,'Separated'),
(3,'Never Married'),
(4,'Divorced'),
(5,'Widowed'),
(6,'Co-Habitation'),
(7,'No Response')