【单选题】表order_items的结构如下: name null? type order_id not null number(12) line_item not null number(3) product_id not null number(6) unit_price number(8,2) quantity ...
【多选题】有表 song(id,song_name,album,play_count,fav_count) 分别表示歌曲的主键 id 、歌曲名、专辑名、播放次数和收藏次数。要求查询超过两首歌的专辑与其歌曲数,并且按专辑名排序;有同学给出如下 sql 语句 : select id,count(*) from song order by album group by album having count(*)>...