Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有奇怪的问题。如果我使用
"SELECT filed1, field2…. FROM some_table WHERE field1 LIKE 'something'"
一切正常,"$grid->SelectCommand"但如果我使用变量
"$grid->SelectCommand"
"SELECT filed1, field2…. FROM some_table WHERE field1 LIKE '$get_variable'"
我没有得到预期的结果。
$get_variable 不在当前范围内,或者它没有您认为的值。但是,LIKE 旨在使用通配符 (%)。如果不是,您只需检查是否相等。
此外,您拼错了 field1(与 field2 相比)。