Commit 69c815fc authored by Quxl's avatar Quxl

x

parent eecec0d1
...@@ -436,10 +436,9 @@ public class FilmServiceImpl implements FilmService { ...@@ -436,10 +436,9 @@ public class FilmServiceImpl implements FilmService {
+ "r.state r_state, " + "r.state r_state, "
+ "group_concat(fp.playactor_name) director_name " + "group_concat(fp.playactor_name) director_name "
+ "from " + "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 " + "where "
+ "mf.id = r.film_id " + "mf.id = fp.film_id "
+ "and mf.id = fp.film_id "
+ "and fp.playactor_type = 'director' " + "and fp.playactor_type = 'director' "
+ StringUtil.join(" and ", " and ", " ", " ", where.getStringList()) + StringUtil.join(" and ", " and ", " ", " ", where.getStringList())
+ "group by " + "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