select-insert Questions
2
Solved
I have a table with two columns:
CREATE TABLE MyTable(
Id int IDENTITY(1,1) NOT NULL,
Name nvarchar(100) NOT NULL);
I want to duplicate the data using SELECT INSERT statement:
INSERT INTO MyT...
Courson asked 10/7, 2014 at 14:32
1
© 2022 - 2024 — McMap. All rights reserved.