select IFNULL(surplus_score,0) from tab_pb_psnl_score where tenant_id= '1478277449404907520' and area_code= '330282109204' and personnel_id = '1656243505334321152' and grid_id = '1610113030392119296' order by creat_time desc limit 1
时间: 2024-04-26 17:20:10 浏览: 53
mysql数据库转瀚高数据库所需要的函数列表
5星 · 资源好评率100%
这是一个 SQL 查询语句,作用是从名为 `tab_pb_psnl_score` 的表中查询出某个租户、区域、人员和网格的最近一次得分,如果没有得分则返回0。具体的查询条件是:`tenant_id` 等于 `'1478277449404907520'`,`area_code` 等于 `'330282109204'`,`personnel_id` 等于 `'1656243505334321152'`,`grid_id` 等于 `'1610113030392119296'`。最后使用 `IFNULL` 函数来判断是否有得分,有则返回得分,没有则返回0。
阅读全文