我想通过SQL查询生成某个结果。我有三张桌子。我想显示id
中的method_tc_assoc
,如果test_catalog
有test_method
,它将显示链接它们的id
,如果没有,它将显示仅显示null
。我还需要显示所有test_method
。
这是我当前的SQL查询:
SELECT
tm.id method_id, tm.method_name,
mta.lis_code, mta.id mta_id, mta.test_catalog_id
FROM
`test_methods` tm
LEFT JOIN
`method_tc_assoc` mta ON tm.`id` = mta.`method_id`
这是我想要实现的: