创建如下的查询。
<?php
$notf = $not->id;
$currDate = date('Y-m-d H:i:s');
$list=Yii::app()->db->createCommand("select id from tbl where start_dt <= '$currDate' and end_dt >= '$currDate'");
$res = $list->queryColumn();
// Code for get the value of the column...
?>
现在,我想要检索一些我希望与$notf
匹配的数据,如
<?php if(!$variable === $notf){ ?>
我在php中使用$row = mysql_fetch_assoc('$qry')
然后使用$data = $row['field_name']
来获取数据。 我应该在Yii做什么?
我是Yii的新人。