我写的是在比较字符串的前3个字符的过程中编写if语句,如: 8005456566
如果前3个字符是: 800 855 866 877
它不会进入声明。
答案 0 :(得分:0)
SELECT * FROM table1 WHERE table1.column LIKE '800%' OR table1.column LIKE '855%' OR table1.column LIKE '866%' OR table1.column LIKE '877%'
%在string
中搜索部分匹配。 This link为您可以使用的标识符提供了一些很好的解释。
答案 1 :(得分:0)
使用MySQL程序,条件将更像这样写:
IF (VariableUsed LIKE '800%' OR VariableUsed LIKE '855%' OR VariableUsed LIKE '866%' OR VariableUsed LIKE '877%) THEN
# code to execute if the string starts with any of the specified numbers
END IF;
每个单独的语句(VariableUsed LIKE someString)检查前三个字符是否与指定字符串中的前三个字符匹配(' 800'或' 855'等。 )以及之后的任何数量的字符('%'符号表示任意数量的字符)。这是MySQL存储过程条件的标准语法。另见: http://dev.mysql.com/doc/refman/5.0/en/if.html
编辑: 如果你想为每个条件做一些不同的事情,你可以更像这样组织它:
IF (VariableUsed LIKE '800%') THEN
# code to execute;
ELSE IF (VariableUsed LIKE '855%') THEN
# code to execute;
ELSE IF (VariableUsed LIKE '866%') THEN
# code to execute;
ELSE IF (VariableUsed LIKE '877%) THEN
# code to execute;
ELSE
# code to execute if none of these are true;
END IF;
这样可以保证执行if语句会产生一些问题,即使它不能识别起始字符串。