Join SQL Server tables on a like statement

后端 未结 4 2106
清酒与你
清酒与你 2021-02-19 18:37

I am hoping this isn\'t a repeat. I\'ve checked the searches and I can\'t seem to find a clear answer to this.

I have a table that has it\'s primary key set to be a

4条回答
  •  长情又很酷
    2021-02-19 19:27

    select u.* from urltable
    join statetable s on url like N'%' + (convert(varchar(50),s.stateid) + N'%'
    

    performance is likely to be awful

提交回复
热议问题