sql中如何判断某一字段值存在数据表的某一字段中
如题 --------------------编程问答-------------------- 不明白您的意思,能再详细的说一下场景吗? --------------------编程问答-------------------- 遍历数据表中的字段,来对比某一字段值 --------------------编程问答-------------------- 比如我想查找111是否在表Table中的ID中 --------------------编程问答-------------------- select ID from table where id=111 --------------------编程问答-------------------- select ID from Table where ID = 111如果有这条记录就会返回ID值 --------------------编程问答-------------------- 你可以用Like 或者CharIndex --------------------编程问答-------------------- select count(id) from table where id=111 --------------------编程问答-------------------- select count(1) where id=@id;
>0存在
--------------------编程问答-------------------- select id from table where( id=111) and where (select count(id) from table( where id=111)<>0) --------------------编程问答-------------------- 大错了,是这个:
select id from table where( id=111) and ((select count(id) from table( where id=111))<>0) --------------------编程问答-------------------- 楼主要找的是明确存在的吗?那就
select count(1) from table where id=111
如果是模糊查找就要用like了 --------------------编程问答-------------------- 查询语句select fieldvalue from table where field = fieldvalue
补充:.NET技术 , C#