Click here to Skip to main content
15,912,507 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have data table with coloum repeated values. but i need distinct values and save as new data table without affecting the old data-table
Posted
Comments
Arindam Tewary 21-Feb-14 4:59am    
Use "Distinct" keyword in SQL query the time you are getting your data from database.

1 solution

SQL
SELECT DISTINCT column1_name,column2_name FROM table_name
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900