Home
|
Weblogs
|
Forums
|
SQL Server Links
Search:
Active Forum Topics
|
Popular Articles
|
All Articles by Tag
|
SQL Server Books
|
About
SQL Server Forums
Profile
|
Register
|
Active Topics
|
Members
|
Search
|
Forum FAQ
Register Now
and get your question answered!
Username:
Password:
Save Password
Forgot your Password?
All Forums
General SQL Server Forums
New to SQL Server Programming
Copy one column1 Table A, to column2 Table B
New Topic
Reply to Topic
Printer Friendly
Author
Topic
reading2009
Starting Member
22 Posts
Posted - 12/29/2009 : 14:22:33
Hi,
I am looking for copy data from one column from one table(1st) to another column in the 2nd table.
But I want the out in the 2nd table in a particular way.
ColumnA in 1st table
abc
def
ghi
dgy
Desired output in 2nd table
ColumnB
abc,def,ghi,dgy
I tried
INSERT INTO TestTable (FirstName, LastName)
SELECT FirstName, LastName
FROM Person.Contact
but i get the output same as 1st table.
Any help here....
vijayisonly
Flowing Fount of Yak Knowledge
USA
1836 Posts
Posted - 12/29/2009 : 14:29:54
Can you provide some more information..table structures??
So you have a single column (probably FullName) in table 2 and you want to insert the value "FirstName,LastName" from table 1 into this new column in table2?
reading2009
Starting Member
22 Posts
Posted - 12/29/2009 : 14:42:33
Yes, you are right. I want different rows in coulmn a in 1st table to appear in 1 row, comma seperated values in column b of second table.
vijayisonly
Flowing Fount of Yak Knowledge
USA
1836 Posts
Posted - 12/29/2009 : 15:06:17
Have a look at this topic to see how to concatenate without a UDF.
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=81254
reading2009
Starting Member
22 Posts
Posted - 12/30/2009 : 09:42:04
Thank you. I will go through your material today and give it a try.
vijayisonly
Flowing Fount of Yak Knowledge
USA
1836 Posts
Posted - 12/30/2009 : 10:01:30
You're welcome. Post back if you face any difficulties (along with sample data this time
).
Topic
New Topic
Reply to Topic
Printer Friendly
Jump To:
Select Forum
General SQL Server Forums
New to SQL Server Programming
New to SQL Server Administration
Script Library
Data Corruption Issues
Database Design and Application Architecture
SQL Server 2012 Forums
Transact-SQL (2012)
SQL Server Administration (2012)
SSIS and Import/Export (2012)
Analysis Server and Reporting Services (2012)
Replication (2012)
Availability Groups and DR (2012)
Other SQL Server 2012 Topics
SQL Server 2008 Forums
Transact-SQL (2008)
SQL Server Administration (2008)
SSIS and Import/Export (2008)
High Availability (2008)
Replication (2008)
Analysis Server and Reporting Services (2008)
Other SQL Server 2008 Topics
SQL Server 2005 Forums
Transact-SQL (2005)
SQL Server Administration (2005)
.NET Inside SQL Server (2005)
SSIS and Import/Export (2005)
Service Broker (2005)
Replication (2005)
High Availability (2005)
Analysis Server and Reporting Services (2005)
Express Edition and Compact Edition (2005)
Other SQL Server Topics (2005)
SQL Server 2000 Forums
SQL Server Development (2000)
SQL Server Administration (2000)
Import/Export (DTS) and Replication (2000)
Transact-SQL (2000)
Analysis Services (2000)
MSDE (2000)
Development Tools
ASP.NET
Reporting Services Development
Other Development Tools
Site Related Forums
Site Related Discussions
Article Discussion
Poll Discussion
The Yak Corral
Other Forums
SQL Server 6.5 \ SQL Server 7.0
Other Topics
MS Access
ClearTrace Support Forum
Old Forums
CLOSED - General SQL Server
CLOSED - SQL Server 2005/Yukon
--------------------
Home
Active Topics
Frequently Asked Questions
Member Information
Search Page
SQL Server Forums
© 2000-2009 SQLTeam Publishing, LLC
This page was generated in 0.06 seconds.