CXYVIP官网源码交易平台_网站源码_商城源码_小程序源码平台-丞旭猿论坛
CXYVIP官网源码交易平台_网站源码_商城源码_小程序源码平台-丞旭猿论坛
CXYVIP官网源码交易平台_网站源码_商城源码_小程序源码平台-丞旭猿论坛

模糊查询

在我们做搜索的时候经常要用到模糊查询
(注:其中name1,name2,name3,name4为数据库字段)
1.方法

实现代码如下:

sql=”select * from table where ”
if name<>”” then
sql=sql & “name1='”&变量&”‘”
end if
if belong1<>”” then
sql=sql & “name2='”&变量&”‘”
end if
if belong2<>”” then
sql=sql & “name3='”&变量&”‘”
end if
if belong3<>”” then
sql=sql & “name4='”&变量&”‘”
end if

2.方法(存储过程)

实现代码如下:

create proc spyourname
(
@name1 varchar(20),
@name2 varchar(20),
@name3 varchar(20),
@name4 varchar(20),
@name5 varchar(20)

)
WITH ENCRYPTION
as
set nocount on 
declare @SQL varchar(5000)

set @SQL=’select name1,name2,name3,name4,name5 from yourtable where 1=1 ‘
if @name<>”
set @[email protected]/* */+ ‘ and name1 like [email protected]/* */+’%”’
if @belong1<>”
set @[email protected]/* */+ ‘ and name2 like [email protected]/* */+’%”’

if @belong2<>”
set @[email protected]/* */+ ‘ and name3 like [email protected]/* */+’%”’
if @belong3<>”
set @[email protected]/* */+ ‘ and name4 like [email protected]/* */+’%”’
exec(@SQL)

以上就是【模糊查询】的全部内容了,欢迎留言评论进行交流!

© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
相关推荐
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容