本文介绍了MS SQL like子句帮助的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在运行下面的这个声明并且它运行正常,



我想将连接改为=到赞声明,其中m。 [名字]就像s。[2020title]但是.....



有时标题可能会有一个额外的词,比如the中的伟大的盖茨比vs 。 了不起的盖茨比。



没有取得任何成功。有人可以指出我正确的方向



我尝试过:



I'm running this statement below and it works fine,

I'd like to alter the join on = to a "Like" statement where m.[name] is like s.[2020title] but .....

Sometimes the title may have a extra word like "the" in it The great gatsby vs. great gatsby.

Not haveing any success. Can someone point me in the right direction

What I have tried:

  update [dbo].[mstr2019]
set [mstr2019].[2020ISBN] = S.[2020isbn], [mstr2019].[2020title] = S.[2020Title]
From Sellers S
INNER JOIN   dbo.[mstr2019] M
on m.[Name] = s.[2020TITLE]
where s.FORMAT = 'Boxed' and m.Format='Boxed'

推荐答案


这篇关于MS SQL like子句帮助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 14:20