Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个表中有一个类似于“Supervision Charges”的字符串,而在另一个表中的字符串类似于“Super Vision Charges”,两个字符串相同但一个有额外的空格,我如何使用该字符串获取第二个表的行第一张桌子,
我认为如果我们忽略SQL 查询中的空格,那么它可以完成,但是,我不知道这种类型的查询。
也许是这样的
WHERE REPLACE (column, ' ', '') LIKE 'SupervisionCharges'