P pchddcat Unregistered / Unconfirmed GUEST, unregistred user! 2002-05-26 #1 result=format(where %s %s "%s"'.[field,condition,param]);,是什么意思,。请教各位大哥
L LuJuhe Unregistered / Unconfirmed GUEST, unregistred user! 2002-05-26 #2 应该是: result=format('where %s %s "%s"'.[field,condition,param]); where前面需要一个引号。 表示返回结果是一个格式化的字符串,假设: field = 'age' condition = '>' param = '20' 那么结果就是: where age > "20"
应该是: result=format('where %s %s "%s"'.[field,condition,param]); where前面需要一个引号。 表示返回结果是一个格式化的字符串,假设: field = 'age' condition = '>' param = '20' 那么结果就是: where age > "20"