提到Like语句大家都很熟悉比如查找用户名包含有c的所有用户 我们可以用 use mydatabase
select * from table where username like%c%
以下是完成上面功能的另一种写法:
use mydatabase
select * from table where charindex(cusername)>
这种方法理论上比上一种方法多了一个判断语句即> 但这个判断过程是最快的 我相信%以上的运算都是花在查找字符串及其它的运算上 所以运用charindex函数也没什么大不了用这种方法也有好处 那就是对%|等在不能直接用like 查找到的字符中可以直接在这charindex中运用 如下:
use mydatabase
select * from table where charindex(%username)>
大家还可以写成:
use mydatabase
select * from table where charindex(char()username)>
ASCII的字符即为%