今天在做用户权限的时候用到下面的SQL语句,查询分析器执行:
select * from tblforms where fid in (select fqx from tblperson where fid=1)
产生错误:
服务器: 消息 245,级别 16,状态 1,行 1
将 varchar 值 '1,2,3,4,5,31,32,33,34,35' 转换为数据类型为 int 的列时发生语法错误。
但是直接用下面的SQL语句:
select * from tblforms where fid in('1','2','3','4','5','6','31','32','33','34','35')
可以正常执行
于是想构造这么一个SQL语句:
select * from tblforms where fid in (select '''+replace(fqx,',',','') from tblperson where fid=1)
可惜想了很多办法也没法实现,原因是:"'"为SQL保留字,不会替换。
经过高人指点,使用charindex 可以实现;
select * from tblforms where charindex(fid,(select fqx from tblperson where fid=1))>0
产生错误:
服务器: 消息 256,级别 16,状态 2,行 1
数据类型 int 对于函数 charindex 无效。允许的类型为: char/varchar、nchar/nvarchar 和 binary/varbinary。
于是对fid 进行转换,char(fid)=char(10) SQL语句如下:
select * from tblforms where charindex(char(fid),(select fqx from tblperson where fid=1))>0
没有报错,可也没有结果....
经过一番CSDN后,进行改写为:
select * from tblforms where charindex(','+rtrim(fid)+',',','+(select fqx from tblperson where fid=1)+',')>0 order by Ftreecode
嘿! 执行结果正确
小结:SQL函数不精通,其实是不了解真正的数据类型.还得深入学习。。。
返回字符串中指定表达式的起始位置。
CHARINDEX ( expression1 , expression2 [ , start_location ] )
expression1
一个表达式,其中包含要寻找的字符的次序。expression1 是一个短字符数据类型分类的表达式。
expression2
一个表达式,通常是一个用于搜索指定序列的列。expression2 属于字符串数据类型分类。
start_location
在 expression2 中搜索 expression1 时的起始字符位置。如果没有给定 start_location,而是一个负数或零,则将从 expression2 的起始位置开始搜索。
int
如果 expression1 或 expression2 之一属于 Unicode 数据类型(nvarchar 或 nchar)而另一个不属于,则将另一个转换为 Unicode 数据类型。
如果 expression1 或 expression2 之一为 NULL 值,则当数据库兼容级别为 70 或更大时,CHARINDEX 返回 NULL 值。当数据库兼容级别为 65 或更小时,CHARINDEX 仅在 expression1 和 expression2 都为 NULL 时返回 NULL 值。
如果在 expression2 内没有找到 expression1,则 CHARINDEX 返回 0。
第一个代码示例返回序列"wonderful"在 titles 表的 notes 列中开始的位置。第二个示例使用可选的 start_location 参数从 notes 列的第五个字符开始寻找"wonderful"。第三个示例显示了当 expression2 内找不到 expression1 时的结果集。
USE pubs
GO
SELECT CHARINDEX('wonderful', notes)
FROM titles
WHERE title_id = 'TC3218'
GO
-- Use the optional start_location parameter to start searching
-- for wonderful starting with the fifth character in the notes
-- column.
USE pubs
GO
SELECT CHARINDEX('wonderful', notes, 5)
FROM titles
WHERE title_id = 'TC3218'
GO
下面是第一个查询和第二个查询的结果集:
----------- 46 (1 row(s) affected) USE pubs GO SELECT CHARINDEX('wondrous', notes) FROM titles WHERE title_id='TC3218' GO
下面是结果集。-----------
0
(1 row(s) affected)