本文實例總結了thinkPHP查詢方式。分享給大家供大家參考,具體如下:
一、普通查詢方式
1. 使用字符串查詢;
復制代碼 代碼如下:$m->where(' id=1 and name="roge" ')->find();
這種方法存在一個缺點,就是當數據表中的查詢字段為字符串時,需要在字段值中加入引號。
2. 使用數組的方式(推薦使用)
$data['name']="adfa"; $data['id']=3; $data['_logic']="or"; //字段之間的邏輯關系,默認為and的關系 $m->where($data)->find();
二、表達式查詢
EQ 等於;
NEQ 不等於;
GT 大於;
EGT 大於等於;
LT 小於;
ELT 小於等於;
LIKE 模糊查詢;
$data['id']=array('gt',6); $data['name']=array('like','%as%'); //notlike //$data['name']=array('like',array('%as%','%ts'),'and'); 默認為or關系,如果用and需要明確指定 $m->where($data)->select(); //其他查詢 between, not between (之間有空格),in,not between,
三、區間查詢
$data['id']=array(array('gt',5),array('lt',10)); //默認生成的是and的關系 //$data['id']=array(array('lt',5),array('gt',10),'or') $data['name']=array(array('like','%d%'),array('like','%e%'),'gege','or'); $m->where($data)->select();
四、統計查詢
count,max, min, avg, sum
復制代碼 代碼如下:$m->max('id')
五、SQL直接查詢
$m=M(); $result=$m->query("select * from think_user where id>1") //query主要用於對數據進行讀取 $result=$m->execute("insert into think_user(`name`) values ('dfd') "); //execute用於對數據進行寫入
更多關於thinkPHP相關內容可查看本站專題:《ThinkPHP入門教程》及《ThinkPHP常用方法總結》
希望本文所述對大家基於thinkPHP框架的PHP程序設計有所幫助。