TP5.1 遇见问题整理
Posted starfish29
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TP5.1 遇见问题整理相关的知识,希望对你有一定的参考价值。
1. 获取当前执行sql
fetchSql(true)
self::table(‘ecm_draw_address‘)->field(‘id‘)->where(array(‘store_id‘=>$data[‘store_id‘]))->fetchSql(true)->find();
2. 多where条件
where("字段名","表达式",“查询条件”)
$where = [ [‘activity_id‘, ‘eq‘, $this->data[‘activity_id‘]], [‘phone‘, ‘neq‘, ""], ]; $award_info = DrawAwardModel::getList($where,‘id‘,‘100‘,‘0‘,‘award_level asc‘);
以上是关于TP5.1 遇见问题整理的主要内容,如果未能解决你的问题,请参考以下文章