public function getGroup()
{
return $this->hasOne(Group::className(), ['Group_Code' => 'Group_Code']);
}
$list = Students::find()
->select(['FIO','Group_Code'])
->with(['group'])
->orderBy('FIO')
->asArray()
->all();
$student['group']['Group_Name']