嗨,网络上的好人,
假设我有这个查询
$query ="select col1, col2 From table where condition";
我想对 col2 的值进行以下操作
$DLMPos = strpos(col2, '-DLM');
if($DLMPos != "" && $DLMPos >= 0){
$col2= strpos(substr(col2, $DLMPos, strlen(col2)), " ");
}
问题:有没有办法在查询中包含这种处理 == > $query ="select col1,if(bla bla bla) From table where condition";。
我知道我们可以在 mysql 查询中执行 if 语句,但我们可以执行 strpos 和 substr 之类的操作吗?
提前致谢