tp5-数据库高级4

是滑稽啊
2019-11-08 / 0 评论 / 223 阅读 / 正在检测是否收录...

复习-查询构造器

查询构造器分为:链式操作,查询语言

【高级查询技巧】获取SQL语句

【返回SQL语句】属于链式操作的一种;返回要执行的SQL语句,一般用于调试SQL语句

报错信息

解决办法:添加fetchSql(true)

返回的是sql语句(字符串)
方法1:链式操作之一
$result=Db::table('ecm_users')
    ->where('ids','>',20)
    ->fetchSql(true)
    ->select();
方法2:数据库类的方法返回sql语句并在两端多了括号
$result=Db::table('ecm_users')
    ->where('ids','>',20)
    ->buildSql();

【高级查询技巧】*聚合查询

【聚合查询】每个方法对应的原生SQL都会自动加上limit 1;查询字段都会自动起别名CONUNT(*) as tp_count

五个函数:sum,avg,count,min,max => limit 1

返回的是字符串
//参数可选的方式,不写参数为count(*)
$result=Db::table('ecm_goods')->field(true)->count();
// SELECT COUNT(*) AS tp_count FROM `ecm_goods` LIMIT 1
//参数可选的方法,写参数count(id)
$result=Db::table('ecm_goods')->field(true)->count('goods_id');
// SELECT COUNT(*) AS tp_count FROM `ecm_goods` LIMIT 1

//sum 和 avg
$result=Db::table('ecm_goods')->field(true)->sum('price');
// SELECT SUM(price) AS tp_sum FROM `ecm_goods` LIMIT 1
$result=Db::table('ecm_goods')->field(true)->avg('price');
// SELECT AVG(price) AS tp_sum FROM `ecm_goods` LIMIT 1
count例子中field链接没有用,查询时可以省略

【高级查询技巧】*快捷查询-不同字段

不同字段的相同值的查询,多个字段之间用|分隔表示OR查询,用&分隔表示AND查询

$result=Db::table('ecm_goods')
    ->field(true)
    ->where('goods_id&if_show&recommended','=',1)
    //WHERE ('goods_id' = 1 AND 'if_show' = 1 AND 'recommended' = 1)
    ->where('if_show|recommended','=',1)
    //WHERE('if_show' = 1 OR 'recommended','=',1)
    ->select();

【高级查询技巧】*快捷查询-相同字段

相同字段的不相同值的查询

$result=Db::table('ecm_goods')
    ->field(true)
    ->where('goods_id',['>=',1],['<=','10'])
    ->where('goods_name',['like','%杰记%'],['like','%海泉%'],['like','%0%'],'OR')
    ->select();
// ( `goods_id` >= 1 AND `goods_id` <= 10 ) 
//( `goods_name` LIKE '%杰记%' OR `goods_name` LIKE '%海泉%' OR `goods_name` LIKE '%0%' ) 

【高级查询技巧】快捷表达式查询

$result=Db::table('ecm_goods')
    ->field(true)
    //->where('goods_id','in',[1,2,3,4,5,6])
    ->whereIn('goods_id',[1,2,3,4,5,6])
    ->select();
方法作用
whereNull查询字段是否为Null
whereNotNull查询字段是否不为Null
whereIn字段IN查询
whereNotIn字段NOT IN查询
whereBetween字段BETWEEN查询
whereNotBetween字段NOT BETWEEN查询
whereLike字段LIKE查询
whereNotLike字段NOT LIKE查询
whereExistsEXISTS条件查询
whereNotExistsNOT EXISTS条件查询
whereExp表达式查询

【高级查询技巧】*快捷查询-时间表达式

whereTime('日期字段名',‘日期表达式’)

$result=Db::table('ecm_goods')
    ->field(true)
    ->whereTime('add_time','>','2019-11-08')
    ->whereItme('add_time','d')
    ->select();

支持的日期表达式包括:

today或d今天
week或w本周
month或m本月
year或y今年
yesterday昨天
last week上周
last month上月
last year去年
-2 hours查询两个小时内
10 hours ago10小时之前到先到

【高级查询技巧】动态查询

查询方法不是链式操作,要做为每次查询的最后一次调用的方法来使用,查询条件都是值等“=”

getBy+FieldName() ,将要查询的字段转成驼峰法来写;根据某个字段里的值查询一条数据

getFieldBy+FieldName() ,返回一个字段里的值,根据一个字段的值查询另一个字段的值;默认排序的第一条的对应字段

动态查询描述
getByFieldName(根据某个字段查询)
getFieldByFieldName(根据某个字段获取某个值)
  • 根据字段的值查询记录(仅一条记录,默认排序规则的第一条),/
  • -> getByFieldName(值) 返回值为一维数组|NULL 相当于find方法
$result=Db::table('ecm_goods')
    ->field('description',true)
    ->getByGoodsId(1);
//WHERE 'goods_id' = 1 LIMIT 1
  • 根据字段的值查询某个字段的值(仅一条记录,默认排序规则的第一条),
  • -> getFieldByFieldName(值,字段名) 返回值为字符串|整型|NULL 相当于find方法
$result=Db::table('ecm_goods')
    ->field('description',true)
    ->getFieldByGoodsId(111,'goods_name');
//SELECT 'goods_name' FROM 'ecm_goods' WHERE 'goods_id' = 1 LIMIT 1

【高级查询技巧】*子查询

1. 子查询作为新表进行查询

$sql=Db::table('ecm_goods')
    ->field(true)
    ->where('goods_id','<',50)
    ->buildSql();
$result=Db::table($sql.' a')
    ->where('price','<',20)
    ->select();
//该例子为简单方式教学,通常第一个查询是很复杂(三表或多表联查)

2.子查询作为字段进行查询

$sql=Db::table('ecm_gcategory')
    ->alias('g')
    ->field('cate_id')
    ->where('c.cate_id=g.parent_id','exp','')
    ->limit(1)
    ->buildSql();
$result=Db::table('ecm_goods')
    ->alias('c')
    ->field('cate_id,cate_name,parent_id')
    ->field('if('.$sql.',1,0) as has_next')
    //->field('if(select cate_id from ecm_gcategory g where c.cate_id=g.parent_id limit 1),1,0) as has_next')
    ->where('c.parent_id',0)
    ->select();

3.子查询作为查询条件,只会多数用于whereIn的条件中

$result=Db::table('ecm_goods')
    ->field('goods_id,goods_name.price')
    ->whereIn('goods_id',function($query){
        $query->table('ecm_users')
            ->field('id')
            ->where('uname','like','%a%')
    })
    ->select();

>>END


0

评论

博主关闭了所有页面的评论