浅析SQLServer中的Scanf与Printf
前端之家收集整理的这篇文章主要介绍了
浅析SQLServer中的Scanf与Printf,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
sqlServer中有两个扩展存储过程实现Scanf和Printf功能,恰当的使用它们可以在提取和拼接字符串时大幅度简化sql代码。1、xp_sscanf,用它可以分解格式相对固定的字符串,这对于厌倦使用一堆substring和charindex的朋友来说不错。比如前几天的一个帖子中提出的如何分解ip地址,相对简练且通用的代码应该是下面这样
<div class="codetitle"><a style="CURSOR: pointer" data="88018" class="copybut" id="copybut88018" onclick="doCopy('code88018')"> 代码如下:
<div class="codebody" id="code88018">
if (object_id ('f_getip' ) is not null )
drop function f_getip
go
create function dbo . f_getip (@ ip varchar (100 ))
returns @ t table (a int,b int,c int,d int )
as
begin
set @ ip = replace (@ ip,'.',' ' )
declare
@ s1 varchar (3 ),@ s2 varchar (3 ),
@ s3 varchar (3 ),@ s4 varchar (3 )
exec xp_sscanf @ ip,'%s %s %s %s',@ s1 output,@ s2 output,@ s3 output,@ s4 output
insert into @ t select @ s1,@ s2,@ s3,@ s4
return
end
go
select
from dbo . f_getip ('192.168.0.1' )
go
/ a b c d
----------- ----------- ----------- -----------
192 168 0 1
/