您好,登錄后才能下訂單哦!
這篇文章給大家介紹SQL數據庫中濫用臨時表和排序的解決優化是怎樣的,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
游標、臨時表、觸發器、COLLATE等等
無可厚非、這些都是好東西,我為什么今天要花時間來寫這些東西呢?
是因為我發現慢慢的很多人用久了這些東西之后會形成一種習慣,不管解決什么問題動不動都會把它們搬出來,由此我看到了很多漂亮的代碼在性能效率面前卻顯得不那么優秀。
好了廢話不多說開始進入正題吧。
場景:
需要通過用戶輸入的姓名關鍵字來搜索用戶。用戶輸入關鍵字'x'來搜索用戶(數據來源于表[Name字段中]或內存[List<UserInfo>]中)
要求:
得到的結果排序應為:
x
xia
xiao
yx
即:
包含x字母的結果均應顯示出來
首字母匹配的結果應該排在前面(如x開頭)
在條件2相同的前提下更短的結果應排在前面(如x排在xia前面)
各位大俠能否給出一套C#與SQL Server(2008)的解決方案?
補充:
如果能一起解決中文問題最好,如搜索'x'
得到的結果排序應為:
x
xiani
夏榮
肖小笑
楊星
即將漢字的拼音首字母納入在內,不知SQL Server是否支持這一特性的搜索?
感謝[學習的腳步]這位網友提出來的問題
其實要解決這個問題不難,無非就是漢字轉拼音首字母
---------------------------------------------------------------------------------------------
先給出解決方案一
---------------------準備工作 開始-------------------------------
if object_id('zhuisuos')is not null
drop table zhuisuos
go
create table zhuisuos
(
name varchar(100)
)
insert into zhuisuos values('追索')
insert into zhuisuos values('追索2')
insert into zhuisuos values('xia')
insert into zhuisuos values('dxc')
insert into zhuisuos values('x')
insert into zhuisuos values('xx')
insert into zhuisuos values('xiani')
insert into zhuisuos values('yx')
insert into zhuisuos values('夏榮')
insert into zhuisuos values('肖小笑')
insert into zhuisuos values('楊星')
go
-------------------------------------------------------------------------------
--建立漢字轉拼音首字母函數
if object_id('fn_getpy1')is not null
drop function fn_getpy1
go
GO
create function [dbo].fn_getpy1
(@str nvarchar(4000))
returns nvarchar(4000)
as
begin
declare @str_len int,@result nvarchar(4000)
declare @zhuisuo table
(firstspell nchar(1) collate Chinese_PRC_CI_AS,
letter nchar(1))
set @str_len=len(@str)
set @result= ' '
insert into @zhuisuo
(firstspell,letter)
select '吖 ', 'A ' union all select '八 ', 'B ' union all
select '嚓 ', 'C ' union all select '咑 ', 'D ' union all
select '妸 ', 'E ' union all select '發 ', 'F ' union all
select '旮 ', 'G ' union all select '鉿 ', 'H ' union all
select '丌 ', 'J ' union all select '咔 ', 'K ' union all
select '垃 ', 'L ' union all select '嘸 ', 'M ' union all
select '拏 ', 'N ' union all select '噢 ', 'O ' union all
select '妑 ', 'P ' union all select '七 ', 'Q ' union all
select '呥 ', 'R ' union all select '仨 ', 'S ' union all
select '他 ', 'T ' union all select '屲 ', 'W ' union all
select '夕 ', 'X ' union all select '丫 ', 'Y ' union all
select '帀 ', 'Z '
while @str_len> 0
begin
select top 1 @result=letter+@result,@str_len=@str_len-1
from @zhuisuo
where firstspell <=substring(@str,@str_len,1)
order by firstspell desc
if @@rowcount=0
select @result=substring(@str,@str_len,1)+@result,@str_len=@str_len-1
end
return(@result)
end
---------------------準備工作 結束-------------------------------
--正式查詢
declare @str varchar(10)
set @str='x'
create table #result
(name varchar(100) null,id int null,lens int null)
insert into #result
select name,1,len(name) from zhuisuos
where name like @str+'%'
insert into #result
select name,2,len(name) from zhuisuos
where name like '%'+@str+'%' and name not like @str+'%'
insert into #result
select name,3,len(name) from zhuisuos
where dbo.fn_getpy1 (name) like @str+'%' and name not like @str+'%' and name not like '%'+@str+'%'
insert into #result
select name,4,len(name) from zhuisuos
where dbo.fn_getpy1 (name) like '%'+@str+'%' and dbo.fn_getpy1 (name) not like @str+'%'
and name not like @str+'%' and name not like '%'+@str+'%'
select name from #result
order by id,lens
drop table #result
這個解決方案已經滿足查詢要求
其它都不管 我們重點來看看這次寫的這個函數
象這樣的漢字轉拼音函數在網上一搜一大把 今天我就要舉例幾個方案讓大家對優化及開銷有個清楚的概念
解決方案一寫的函數實在是太糟糕了(以上及接下來舉出的案例并無冒犯任何雷同及原創代碼之意,還請多多包涵)
為什么這么說呢
這是它的執行計劃
它用了臨時表并且排序
表插入開銷0.01 表掃描開銷0.003 表排序0.011
估計總開銷0.0246
實際執行:我拿1萬行數據調用此函數花了我20幾秒、一個查詢操作你愿意等20多秒嗎
所以看到這樣的執行計劃實在很抱歉
解決方案二
create function [dbo].[fn_getpy2](@Str varchar(500)='')
returns varchar(500)
as
begin
declare @strlen int,@return varchar(500),@ii int
declare @n int,@c char(1),@chn nchar(1)
select @strlen=len(@str),
關于SQL數據庫中濫用臨時表和排序的解決優化是怎樣的就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。