CI框架 模糊查询,链表查询
Posted songyanan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CI框架 模糊查询,链表查询相关的知识,希望对你有一定的参考价值。
$data = $this->db->from(‘flash_news‘)
->select(‘xx,xx,xx,xx‘)
->limit(2)
->like(‘tags‘ ,‘小兵研究‘, ‘both‘)
->like(‘tags‘ ,‘孙哥哥‘, ‘both‘)
->like(‘content‘ ,‘众生药业‘, ‘both‘)
->order_by(‘news_id‘,‘desc‘)
->get()
->result_array();
echo $this->db->last_query()
$data = $this->db->from(‘xx‘)
->join(‘xx‘,‘xx.SECURITYCODE = xx.SECURITYCODE‘)
->select(‘xx‘)
->where(array(1)
//->limit(500)
->get()
->result_array();
以上是关于CI框架 模糊查询,链表查询的主要内容,如果未能解决你的问题,请参考以下文章
使用SMM框架开发企业级应用-----初始Mybatis的模糊查询以及自动映射