MySQL限制未设置为特定范围

时间:2013-08-19 15:32:19

标签: php mysql kohana

我的查询如下。

$tests = DB::select('devices.id')
 ->select(array('devices.description', 'dev_desc'))
 ->select(array('device_types.description', 'devtype_init'))
 ->select(array('actions.description', 'test_desc'))
 ->select(array('history.dt_logged', 'last_test'))
 ->select(array(DB::expr('history.dt_logged + (devices.frequency * 7 * 24 * 60 * 60)'), 'next_test'))
 ->from('history')
 ->join('actions')->on('history.action_id', '=', 'actions.id')
 ->join('devices')->on('history.device_id', '=', 'devices.id')
 ->join('device_types')->on('devices.device_type_id', '=', 'cal_device_types.id')
 ->and_where(DB::expr('history.dt_logged + (devices.frequency * 7 * 24 * 60 * 60)'), '>=', $start)
 ->and_where(DB::expr('history.dt_logged + (devices.frequency * 7 * 24 * 60 * 60)'), '<=', $end)
 ->where('device_types.description', '=', 'Calibration')
 ->order_by('history.dt_logged', 'desc')->limit(1)
 ->execute();

我想拉回一条记录,因此“limit(1)”,但它会拉回多条记录。代码看起来很完美。任何帮助将不胜感激。

干杯。

相关子查询是否有效?!

1 个答案:

答案 0 :(得分:0)

我们需要查看不同表之间的关系以获得确切的原因,但我的猜测是您在这些表之间存在一对多的关系,并且需要GROUP BY来总结它们

我建议使用WHERE子句运行查询,该子句将主行限制为一个结果(例如devices.id = x)。然后,您将看到为该ID返回的多行,使用聚合函数(如GROUP BY)将这些结果合并为一行。