博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL Server 查询语句提取中文内容
阅读量:5082 次
发布时间:2019-06-13

本文共 534 字,大约阅读时间需要 1 分钟。

create function fun_getCN(@str nvarchar(4000))

returns nvarchar(4000)
as
begin
declare @word nchar(1),@CN nvarchar(4000)
set @CN=''
while len(@str)>0
begin
set @word=left(@str,1)
if unicode(@word) between 19968 and 19968+20901
set @CN=@CN+@word
set @str=right(@str,len(@str)-1)
end
return @CN
end

 

select dbo.fun_getCN('sdsfdfd博客园xcxcxc')

博客园
select dbo.fun_getCN('cxxvx发布cxcx')
发布
select dbo.fun_getCN('cxcXZCzxc')
空字符串

 

 

http://www.yuqicook.com/post/20101026001.aspx

转载于:https://www.cnblogs.com/yuqicook/archive/2010/10/26/1862015.html

你可能感兴趣的文章
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
bcb ole拖拽功能的实现
查看>>
生活大爆炸之何为光速
查看>>
bzoj 2456: mode【瞎搞】
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
[GraphQL] Reuse Query Fields with GraphQL Fragments
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
两种最常用的Sticky footer布局方式
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Java程序IP v6与IP v4的设置
查看>>
RUP(Rational Unified Process),统一软件开发过程
查看>>
数据库链路创建方法
查看>>
Enterprise Library - Data Access Application Block 6.0.1304
查看>>
重构代码 —— 函数即变量(Replace temp with Query)
查看>>