如何将一张表的一列插入到另一张表的一列
Re如何将一张表的一列插入到另一张表的一列
sql 语句求助!!!从没用过sql,看了网上教程,才把数据表弄下来了,想把mars_tianchi_songs_ori和mars_tianchi_user_actions_ori 这两个数据表整合,得到一个新的三列的数据表,第一列为artist_id,第二列为num(该歌手每天点播量),第三列是对应日期,不知道怎么做了,于是尝试了做一个歌手的(sql语句如下),结果还是有错误,求助!sos!
select song_id,action_type ,ds
from mars_tianchi_songs_ori mars_tianchi_user_actions_ori
where mars_tianchi_songs_ori.artist_id='0693f5e1c570d9678523c41e03aae3ab'
and mars_tianchi_user_actions_ori.action_type='1'
and mars_tianchi_songs_ori.song_id=mars_tianchi_user_actions_ori.song_id
赞0
踩0