我有一个表 A 的列名为 OriginalWord 和表 B 的列名为 mySentence。
OriginalWord 的行如下:
- 星星
- 数据
- 检查
它存储任何单个单词。
mySentence 存储带有句子的行,例如:This is a star。
如果 OriginalWord 中的任何单词存在于 mySentence 中,我想列出 mySentence 中的所有行。
因此,上面示例中的 mySentence 将被列出,但如果 mySentence 的行是“This is my dad”,则不会列出。
我如何在 T-SQL 中编写它?