I\'m new to SQL, (using SQL 2008 R2) and I am having trouble inserting multiple rows into a single column.
I have a table named Data and this is what I
Data
In that code you are inserting two column value. You can try this
INSERT INTO Data ( Col1 ) VALUES ('Hello'), INSERT INTO Data ( Col1 ) VALUES ('World')