fix(SQL表名大小写): SQL表名由大写改为小写

SQL表名由大写改为小写
This commit is contained in:
song-tianyang 2021-08-13 18:12:11 +08:00 committed by 刘瑞斌
parent 7354d310a6
commit 3494bbdc05
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
<select id="selectLegalDataByTestPlanId" resultType="io.metersphere.base.domain.TestPlanApiScenario">
SELECT t.* FROM test_plan_api_scenario t WHERE t.test_plan_id = #{0}
AND t.api_scenario_id IN (
SELECT id FROM API_SCENARIO WHERE status IS NULL OR status != 'Trash'
SELECT id FROM api_scenario WHERE status IS NULL OR status != 'Trash'
)
</select>