1,
mysql查询 时间段类似 '20201001-20201010'
数据库字段 cycle
传入 时间 $data['start_time']='2021-02-05'
$row = '1=1';
if (isset($data["start_time"]) && !empty($data["start_time"])) {
$row .=" and SUBSTRING_INDEX(cycle,'-',1) >=".str_replace('-','',$data['start_time']);
}
if (isset($data["end_time"]) && !empty($data["end_time"])) {
$row .=" and SUBSTRING_INDEX(cycle,'-',-1) <=".str_replace('-','',$data['end_time']);
}
2,MySQL执行查询,条件是小数的
select * from specs where s_price<>round(s_price,0);
3,PHP操作数据库,某一个字段,追加信息
$a='add'; Db::name("sos_user") ->where(["id"=>2])->update(["username"=>Db::raw("CONCAT(username,'".$a."')")]);
有时执行这条sql语句会不生效,原因是 对于字段内容是 null的执行会返回null
Db::name("sos_user") ->where(["id"=>2]) ->update(["username"=>Db::raw("(CONCAT(ifnull(username,''),'".$a."'))")]);
4,php 执行查询多条件分组
$list= $this->where($where)->limit($offset,$rows)->group('p_name,ip,id')->select()->toArray();
5,mysql 执行查询时手机号 * 号代替
select insert(phone,4,4,'****')as phone from sos_thinker_user