主要是补全一下JavaScript
基本对象:
String对象
语法格式
方式1: var 变量名 new String("…") ; //方式一 例如: var str new String("Hello String"); 方式2: var 变量名 … ; //方式二 例如: var …
Problem: 1484. 按日期分组销售产品 👨🏫 参考题解
select sell_date, count(distinct product) num_sold,group_concat(distinct product order by productseparator ,) products
from activities
group by sell_date