例如 select * from tbl where a like '%123%' or b like '%123%' or c like '%123%' ;实现这样的功能,thinkphp怎么写呢?貌似where['a']=array('like',"%123%");where['b']=array('like',"%123%");where['c']=array('like',"%123%");这样下来,abc三个字段是且(and)的关系,不…
Thinkphp中查询复杂sql查询表达式,如何表达MYSQL中的某字段不为空is not null?先上两种实现方式的实例:$querys["house_type_image"] = array('NEQ','NULL'); //判断字段不为空//$querys["house_type_image"] = array('exp','is not null');//其中的exp表示MYSQL的表达式查询,支持各种MYSQL语句的添加-----------------…