--创建函数
create function [dbo].[m_count]
(
@str_one nvarchar(200), --第一个字符串
@str_two nvarchar(200) --第二个字符串
)
returns int as
begin
declare @sqlcount int
select @sqlcount=(len(@str_one)-len(replace(@str_one,@str_two,‘‘)))/len(@str_two)
return @sqlcount
end
--测试示例
select dbo.m_count(‘sqlserver‘,‘e‘) as [count]
--运行结果
/*
count
-----------
2
*/
时间: 2024-11-08 01:49:41