如何在SQL中检查两个字符串条件

时间:2016-06-09 04:24:57

标签: sql

当我写下面的查询时:

select *
from tablename 
where cloumn1 = "String1" 
  and column2 = "String2";

我收到错误

  

String2:无效的标识符。

1 个答案:

答案 0 :(得分:2)

删除双引号

像这样

select *
from tablename 
where cloumn1 = 'String1' 
  and column2 = 'String2';