SQL query question

Started by
1 comment, last by eastcoastsurfer 18 years ago
Hello. I have table with 2 columns, non of them is a key. I need query that will NOT select duplicated rows, only one occurrence of each row kind will appear after this select. Thanks in advance.
Advertisement
Use the 'distinct' clause, eg. select distinct * from table
You can also use a group by clause.

This topic is closed to new replies.

Advertisement