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 |
|
CMangano
Starting Member
16 Posts |
Posted - 2001-09-12 : 20:03:00
|
| I was wondering if there is a way to find only the rows were a certain column matched. For example, suppose we have the following table:id value name -- ----- ----1 test x2 this y3 test z4 how zNow I want to return the values for the names x and z. But, I only want to return the values that are exactly the same. So, my query should returnid value name-- ----- ----1 test x3 test zCan it be done? Thanks in advance. |
|
|
|
|
|