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 |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2004-05-10 : 12:30:16
|
| Shantanu writes "hi sqlteam members' i have two tables one stores codes with descriptionand another table has a columns that stores list of codes.i am unable to display description for codes in a single select statement.I am using sql server 7 .kindly help" |
|
|
RickD
Slow But Sure Yak Herding Master
3608 Posts |
Posted - 2004-05-10 : 12:36:09
|
| select description from tablea a inner join tableb b on b.code = a.code |
 |
|
|
|
|
|