1、insert:插入
$where11['total_id'] =? '4654645685';? ? //where11:自定义? ?total_id:字段名
$d['group_name'] = '5646456';? ? ? ? ? ? ?//group_name:字段名
sysaaaa::insert($d);? ? ? ? ? ? ? ? ? ? ? //sysaaaa:数据库表名
2、update:更新
$where11['total_id'] =? '4654645685';? ? ? //where11:自定义? ? ?total_id:字段名
$d['group_name'] = '5646456';? ? ? ? ? ? ? ?//group_name:字段名
$d['update_time']=$now_time; //update_time:字段名 $now_time:现在的时间
//为防止重复更新同一条数据,需要把update_time字段进行更新,每次更新数据时就把更新数据的时间给update_time
$id=sysaaaa::where($where11)->update($d);? ? ? ? ? ? ? ? ? ? ? ? //sysaaaa:数据库表名
//更新时需要加where条件
3、first:查询(一维数组)
$ddddd=sysaaaa::where($wherre11)->first();
//每次查询时只查出表里面复合条件的第一条语句
4、get:查询(二维数组)
$ddddd=sysaaaa::where($where11)->get();
//每次查询时查出符合条件的所有语句
5、count:计数
$ddddd=sysaaaa:;where($where11)->count();
//按照条件查询出表里面符合条件的语句的总数量
6、del:删除
一般用于软删除
|