這篇文章主要介紹了thinkPHP資料庫增刪改查操作方法,結合實例形式詳細分析了thinkPHP常用資料庫操作函數與相關使用技巧,需要的朋友可以參考下
本文實例講述了thinkPHP資料庫增刪改查操作方法。分享給大家供大家參考,具體如下:
thinkphp對資料庫增刪改查進行了封裝操作,使得使用更加方便,但是不一定靈活。
可以用封裝的用,需要寫sql,可以執行sql。
1.原始的
$Model = new Model(); // 实例化一个model对象 没有对应任何数据表 $insert_sql = "INSERT INTO sh_wxuser_collection (user_id,store_id,good_id,addtime) VALUES('".$user_id."','".$store_id."','".$good_id."','".$addtime."');"; $Model - >query($insert_sql);
2.針對表格實例化的,這裡的表原名是sh_wxuser_collection。 sh是前綴。
$model = M('wxuser_collection'); //自动省去sh $insert_sql = "INSERT INTO __TABLE__ (user_id,store_id,good_id,addtime) VALUES('".$user_id."','".$store_id."','".$good_id."','".$addtime."');"; $model - >query($insert_sql);
另一種寫法,_可以寫成大寫,它會自動轉換成_
$model = M('WxuserCollection'); //自动省去sh $insert_sql = "INSERT INTO __TABLE__ (user_id,store_id,good_id,addtime) VALUES('".$user_id."','".$store_id."','".$good_id."','".$addtime."');"; $model - >query($insert_sql);
#3. 封裝的add語句
$model = M('WxuserCollection'); $data = array('user_id' = >$user_id, 'store_id' = >$store_id, 'good_id' = >$good_id, 'addtime' = >$addtime); $model - >data($data) - >add();
4.封裝的修改edit語句
#$model = M('WxuserCollection'); $data = array('user_id' = >$user_id, 'store_id' = >$store_id, 'good_id' = >$good_id, 'addtime' = >$addtime); $model - >data($data) - >where('id=3') - >save();
確實挺方便的,但是方便之餘,別忘了原始的sql,原汁原味的sql,才最有意思。
5.find()
$model = M('WxuserCollection'); $res1 = $model - >find(1); $res2 = $model - >find(2); $res3 = $model - >where('good_id=1105 AND store_id = 1 AND user_id = 20') - >find();
find取得一條數據,find(1)取得id為1的數據,find(2)取得id為2的數據。最後一個是取得條件為where的中的第一個資料。
5.select()
$model = M('WxuserCollection'); $res = $model - >where('good_id=1105 AND store_id = 1 AND user_id = 20') - >field('id,good_id as good') - >select();
取得所有資料。這裡的好處就是,不用考慮sql語句的順序了,隨心所欲呼叫函數就可以了。
6.delete()
$model = M('WxuserCollection'); $res = $model - >where('id=1') - >delete(); // 成功返回1 失败返回0
根據條件進行刪除動作
7.field()
$model = M('WxuserCollection'); $res = $model - >field('id,good_id as good') - >select(); $res = $model - >field(array('id', 'good_id' = >'good')) - >select(); $res = $model - >field('id', true) - >select();
字串,陣列兩種方式,第三個是表示獲取處理id之外的所有字段。
8.order()
$model = M('WxuserCollection'); $res = $model - >order('id desc') - >select(); $res = $model - >order('id asc') - >select(); $res = $model - >order(array('id' = >'desc')) - >select(); $res = $model - >order(array('id')) - >select();
字串,陣列兩種方式,預設asc。
9.join()
$Model->join(' work ON artist.id = work.artist_id')->join('card ON artist.card_id = card.id')->select(); $Model->join('RIGHT JOIN work ON artist.id = work.artist_id')->select(); $Model->join(array(' work ON artist.id = work.artist_id','card ON artist.card_id = card.id'))->select();
預設採用LEFT JOIN 方式,如果需要用其他的JOIN方式,可以改成第二種,
如果join方法的參數用陣列的話,只能使用一次join方法,並且不能和字串方式混合使用。
10.setInc()
#10.setInc()
$User = M("User"); // 实例化User对象 $User->where('id=5')->setInc('score',3); // 用户的积分加3 $User->where('id=5')->setInc('score'); // 用户的积分加1 $User->where('id=5')->setDec('score',5); // 用户的积分减5 $User->where('id=5')->setDec('score'); // 用户的积分减1
11.getField()
#取得某個欄位值$User = M("User"); // 实例化User对象 // 获取ID为3的用户的昵称 $nickname = $User->where('id=3')->getField('nickname');
$User = M("User"); // 实例化User对象 // 获取status为1的用户的昵称列表 $nickname = $User->where('status=1')->getField('nickname',true);
$nickname = $User->where('status=1')->getField('nickname',8);
$User = M("User"); // 实例化User对象 // 获取status为1的用户的昵称列表 $nickname = $User->where('status=1')->getField('id,nickname');
#
$result = $User->where('status=1')->getField('id,account,nickname');
$where = array('a.store_id' => $this->store_id, 'a.user_id' => $this->user_id); $collects = $this->collectModel->table("sh_wxuser_collection a")->field(array('b.name','b.price','b.oprice','b.logoimg','a.goods_id'))->limit($start, $offset)->order('a.addtime DESC')->where($where)->join(' sh_goods b ON a.goods_id = b.id')->select();// 获取当前页的记录 echo M()->getLastSql(); // 调试sql语句用 $count = $this->collectModel->table("sh_wxuser_collection a")->where($where)->count(); // 获取总的记录数
field('b.name', 'b.price', 'b.oprice', 'b.logoimg', 'a.goods_id') // 错误
echo M()->getLastSql();
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
############ ##
以上是thinkPHP資料庫的增刪改查操作的詳細內容。更多資訊請關注PHP中文網其他相關文章!