选择count int类型

时间:2017-04-28 23:35:50

标签: php sql postgresql

我有这个选择我想要id计数:

$x = DB::select('   select count(id)
                    from repairs
                    where vehicle_id = ?',
                    [$vehicle->id]);

但我不确定我的变量$x是否只是一个简单的int号或一些string类型,因为我想在$x变量>

if($x>0){ 
   do something
}

我总是得到非零值,即使我应该得到零。有什么问题?

1 个答案:

答案 0 :(得分:0)

我认为您的select没有返回比例值。因为我不知道你的ORM我可以告诉你试试if(count($x)>0)