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.
| Author |
Topic |
|
skiabox
Posting Yak Master
169 Posts |
Posted - 2009-03-24 : 07:46:21
|
| I have a query of the typeSELECT * FROM table WHERE id=551and I get some results from this one.How can I get from these results the distinct rows using another field?(not id).Thank you! |
|
|
asgast
Posting Yak Master
149 Posts |
Posted - 2009-03-24 : 07:55:18
|
| SELECT DISTINCT * FROM table WHERE id=551 |
 |
|
|
|
|
|