dsieyx2015 2014-07-04 04:45
浏览 34
已采纳

Yii2中的关系和主动查询?

I have 2 tables:

Auto

id (pk) int

name varchar100

color int

AutoComparison

auto1_id

auto2_id

status

Where:

(*status - 
id 0 new

id 1 old

id 2 broken)

I need to select all cars whose status (id 2 "broken") and count the number of them.

The question that I need to change in the model and insert into the view file, in order to display the number of broken auto's. (Framework Yii2)

  • 写回答

1条回答 默认 最新

  • douchun3680 2014-07-04 06:21
    关注

    You can access your relations by calling the relation as you would a property of the model.

    To count:

    $count = AutoComparison::find()->where('status = 2')->count();
    

    To select the models:

    $models = AutoComparison::find()->where('status = 2')->all();
    

    Show the names and colors of the broken cars:

    foreach ($models as $model) {
        echo 'Car name: ' . $model->auto->name;
        echo '<br/>';
        echo 'Car color: ' . $model->auto->color;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?