SQL语句的问题
ReSQL语句的问题
SELECT
s.song_id,
s.artist_id,
s.song_init_plays,
s.Gender,
Plays
FROM
(
SELECT
*
FROM
mars_tianchi_songs
)s
JOIN
(
SELECT
song_id,
COUNT(action_type) Plays
FROM
mars_tianchi_user_actions
WHERE
action_type = 1
GROUP BY
song_id, action_type
)u
ON
s.song_id = u.song_id
可以试试看是不是你想要的,同是菜鸟一枚。。。
赞0
踩0