项目库过滤掉平台件的数据(.xml)

This commit is contained in:
zhn
2023-09-14 09:45:41 +08:00
parent 5912979f4a
commit dc4093d66d
11 changed files with 37 additions and 16 deletions
@@ -27,7 +27,7 @@
FROM
project_library_base a
JOIN mysql.help_topic b ON b.help_topic_id < ( length( a.certification_engineer ) - length( REPLACE ( a.certification_engineer, ',', '' ) ) + 1 )) temp
WHERE user_id = #{userId}) a ON pm.project_id = a.id
WHERE user_id = #{userId} and platform is null) a ON pm.project_id = a.id
where pm.state = #{state}
</select>