如何生成适当的SQL查询

时间:2019-07-24 03:54:12

标签: mysql sql mariadb

我想通过SQL查询生成某个结果。我有三张桌子。我想显示id中的method_tc_assoc,如果test_catalogtest_method,它将显示链接它们的id,如果没有,它将显示仅显示null。我还需要显示所有test_method

These are my current tables

这是我当前的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`

Current Result

这是我想要实现的:

Needed Result

0 个答案:

没有答案