Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 distinct into new table

Author  Topic 

statix
Starting Member

12 Posts

Posted - 2013-02-01 : 10:32:33
hi i try to do distinct and insert the data to new table


select distinct states
from datazip
into states.state_name


i tried


select into states.state_name
from datazip.state


i keep geting errors ... :\
any suggestions ?

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-02-01 : 12:22:35
should be

insert states
(state_name)
select distinct states
from datazip


------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page

statix
Starting Member

12 Posts

Posted - 2013-02-01 : 12:23:37
nevermind guys i found my mistake thx anyway


select distinct <column dest>
into <table dest>
from <table src>
Go to Top of Page

statix
Starting Member

12 Posts

Posted - 2013-02-01 : 12:24:59
thx visakh16 i will try your sultion for the sport :) !
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-02-01 : 12:26:02
quote:
Originally posted by statix

thx visakh16 i will try your sultion for the sport :) !


mine will work if table already exist
yours will create a new table

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page

statix
Starting Member

12 Posts

Posted - 2013-02-01 : 13:32:55
Thx! yours much better! helped me alot!
Go to Top of Page

statix
Starting Member

12 Posts

Posted - 2013-02-01 : 13:32:56
Thx! yours much better! helped me alot!
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-02-02 : 03:09:32
welcome

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page
   

- Advertisement -