| | |
| | | |
| | | SELECT |
| | | canc.*, |
| | | (SELECT nick_name FROM sys_user WHERE sys_user.user_id = canc.release_id) as name , |
| | | (SELECT community_id FROM sys_user WHERE sys_user.user_id = canc.release_id) as community_id, |
| | | (SELECT name FROM com_act WHERE com_act.community_id = canc.community_id) as communityName, |
| | | (SELECT name FROM com_act_neighbor_circle_topic WHERE com_act_neighbor_circle_topic.id = canc.topic_id) as topicName, |
| | | (SELECT image_url FROM sys_user WHERE sys_user.user_id = canc.release_id) as headUrl |
| | | su.nick_name as name, |
| | | su.community_id as communityId, |
| | | ca.`name` as communityName, |
| | | canct.name as topicName, |
| | | su.image_url as headUrl |
| | | FROM |
| | | com_act_neighbor_circle AS canc |
| | | left join sys_user as su on su.user_id = canc.release_id |
| | | left join com_act_neighbor_circle_topic as canct on canct.id = canc.topic_id |
| | | left join com_act as ca on ca.community_id = canc.community_id |
| | | where canc.id =${circleId} |
| | | |
| | | |