WEB开发网
开发学院数据库MSSQL Server SQL Server另类写法代替Like语句 阅读

SQL Server另类写法代替Like语句

 2008-05-26 09:55:39 来源:WEB开发网   
核心提示:提到Like语句大家都很熟悉,比如查找用户名包含有"c"的所有用户, 我们可以用use mydatabaseselect * from table1 where username like'%c%" 以下是完成上面功能的另一种写法:use mydatabaseselect * fr

提到Like语句大家都很熟悉,比如查找用户名包含有"c"的所有用户, 我们可以用use mydatabase select * from table1 where username like'%c%"

以下是完成上面功能的另一种写法:  use mydatabase
  select * from table1 where charindex('c',username)>0

这种方法理论上比上一种方法多了一个判断语句,即>0, 但这个判断过程是最快的, 我相信80%以上的运算都是花在查找字符串及其它的运算上, 所以运用charindex函数也没什么大不了。用这种方法也有好处, 那就是对%,|等在不能直接用like 查找到的字符中可以直接在这charindex中运用, 如下:

  use mydatabase
  select * from table1 where charindex('%',username)>0

大家还可以写成:

  use mydatabase
  select * from table1 where charindex(char(37),username)>0

ASCII的字符即为%

Tags:SQL Server 另类

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接