数据库:SQLserver
问题:T表有个字段C的值是“value ”(包括英文双引号)
请问查询语句where条件里怎么写才能把等于这个值的行给查出来呢
(不使用like的情况)
感谢
select
t.*
from(
SELECT '"中国人民"' as c
union all
SELECT '"这是测试"' as c
) t
where 1=1
and t.c='"中国人民"'
值为"value" 那就where 列 = '"value"' 不行吗?
WITH T AS (
SELECT '"value"' c
)
select * from t where c='"value"'