Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQl Question

Status
Not open for further replies.

lalitha1

Programmer
Oct 14, 2008
57
US
I have two tables EMP and CUST with columns Empsym and Custsym. I need to join on these fields --- Empsym with the string of symbols in Custsym. Can someone help me with this.
Empsym Custsym
15 16H;42A;23
23 36D;15;24
21A D42;35;XB
D42 65;3B;X6;44;56;14B;21W;21A;15C
 
I encourage you to change the structure of your tables. This method for storing a list of sym's is really a bad idea. Please do a little research on [google]Database Normalization[/google]. You'll be glad you did.

I also realize that it's not always possible to change the structure of your tables, so....

Code:
Select	* 
From	Emp
        Inner join Cust
          On ';' + Cust.CustSym + ';' Like '%;' + Emp.EmpSym + ';



-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
I do understand that this is not a good idea but this is the business requirement. Appreciate your help.
 
If I hadn't put that bit in there about database normalization, I would catch hell from the regulars that read this forum. [wink]



-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top