T-SQL-按字符比较字符串char

T-SQL-按字符比较字符串char,第1张

T-SQL-按字符比较字符串char

对于您不想使用逐行方法的表中的列,请尝试以下一种方法:

with cte(n) as (    select 1    union all    select n + 1 from cte where n < 9)select    t.s1, t.s2,    sum(      case      when substring(t.s1, c.n, 1) <> substring(t.s2, c.n, 1) then 1      else 0      end    ) as difffrom test as t    cross join cte as cgroup by t.s1, t.s2

= > SQL小提琴演示



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5640812.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存