我的查询是
SELECT count(crm_clients.client_id) as count, (((sum(expectd_rev)/1000) +((COALESCE((sum(COALESCE(client_rating,0))/count(crm_client_assign.client_id)),0)*100)/5))/392.10000000)*100 as val
FROM (`crm_clients`)
JOIN `crm_project_assign` ON `crm_clients`.`client_id` = `crm_project_assign`.`client_id`
JOIN `crm_projects` ON `crm_project_assign`.`project_id` = `crm_projects`.`project_id`
LEFT JOIN `crm_client_assign` ON `crm_clients`.`client_id` = `crm_client_assign`.`client_id`
WHERE `ctype` = 2 and crm_clients.client_id in (select client_id from crm_project_assign)
group by crm_clients.client_id
order by val desc
是否可以在条件中使用val?任何解决方案?
答案 0 :(得分:2)
由于两个原因,这是不允许的。首先,您不能在where
子句中使用列别名。更重要的原因(在我看来)是val
由聚合函数组成。您不能在where
子句中使用聚合函数。
解决方案很简单:使用having
子句。这是在group by
之后,您可以这样做:
having val > 10
或者你想要的任何东西。
答案 1 :(得分:1)
where
条件中使用该别名。不允许在WHERE子句中引用列别名,因为在执行WHERE子句时可能尚未确定列值。
您需要在where
条件下再写一遍。