我需要构建一个查询来比较表中的两个值对中的一个,我的表结构看起来像这样:
product_id | psi_a | gpm_a | psi_b | gpm_b |
-------------------------------------------------------------
PRODUCT_123 | 1000 | 400 | 8000 | 300 |
-------------------------------------------------------------
PRODUCT_456 | 2804 | 3006 | 5800 | 579 |
当我的psi_a
和gpm_a
是psi_b
和gpm_b
的值对时,我目前必须运行两个SQL查询来获取渲染所需的值我的网站页面正确,但这会导致两组结果附加到页面。
标记
$flowQ = $function->flow_query( $pType, $pVal, $gVal, $class_style, $cVal, $pageCat );
$highQ = $function->high_query( $pType, $pVal, $gVal, $class_style, $cVal, $pageCat );
if(empty($flowQ)===false){
$function->generate_view( $flowQ, $pType, $pVal, $gVal, $class_style, $cVal, $pageCat );
}
这些函数构建的当前SQL如下:
flow_query();
$query = $this->db->prepare( "SELECT * FROM `pumps` WHERE `pump_type` = ? AND `psi_a` >= ? AND gpm_a >= ? AND `pump_category` = ? ORDER BY pump_type DESC" );
$query->bindValue(1, $pType);
$query->bindValue(2, $pVal);
$query->bindValue(3, $gVal);
$query->bindValue(4, $cVal);
第二个查询几乎完全相同,但它使用psi_a
和gpm_a
作为值参数。有没有办法将这些查询组合起来返回一个引用psi_a
和gpm_a
的结果集,如果没有返回结果,那么它会引用psi_b
和gpm_b
?
我是SQL的新手,所以如果不可能,那么我将寻求另一种解决方案。
答案 0 :(得分:2)
也可以称之为答案。你可以在where where语句中使用和/或使用。
where (psi_a = ? and gpm_a = ? ) or (psi_b = ? and gpm_b = ? )
您还可以在select语句中放置一个case子句,该子句将显示哪个where子句在需要时找到匹配项。