SELECT t.id,t.order_number,t.registration_Time,t.inspect_unit,t.inspect_form,t.unit_type,t.unit_ids,t.unit_name, t.problem,t.ask_leave_ids,t.ask_leave_name,t.disposal_situation,t.catalog_id,t.street_name,t.check_street_ids,t.check_street_name,t.receive_Unit,sd.dept_name AS receive_Unit_Name FROM tb_duty_inspect_class t LEFT JOIN tb_sys_dept sd ON sd.ID = t.receive_Unit WHERE t.is_delete='0' 我要根据receive_Unit 查询unit_name
时间: 2024-02-25 08:56:27 浏览: 43
py_inspect-master.zip
好的,您需要根据 `receive_Unit` 查询 `unit_name`,可以使用以下 SQL 语句:
```
SELECT t.unit_name
FROM tb_duty_inspect_class t
LEFT JOIN tb_sys_dept sd ON sd.ID = t.receive_Unit
WHERE t.is_delete = '0' AND sd.dept_name = 'receive_unit的值';
```
其中 `receive_unit的值` 部分需要替换成您想要查询的 `receive_unit` 的具体值。执行该 SQL 语句后,会返回符合条件的 `unit_name`。
阅读全文