Commit 69c815fc authored by Quxl's avatar Quxl

x

parent eecec0d1
......@@ -436,10 +436,9 @@ public class FilmServiceImpl implements FilmService {
+ "r.state r_state, "
+ "group_concat(fp.playactor_name) director_name "
+ "from "
+ "fc_member_film mf, fc_review r, fc_member_film_playactor fp "
+ "fc_member_film mf left join fc_review r on r.film_id = mf.id, fc_member_film_playactor fp "
+ "where "
+ "mf.id = r.film_id "
+ "and mf.id = fp.film_id "
+ "mf.id = fp.film_id "
+ "and fp.playactor_type = 'director' "
+ StringUtil.join(" and ", " and ", " ", " ", where.getStringList())
+ "group by "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment