我想阅读有关浏览器流api(不是节点!)的信息
我知道这里有视频流规格:https://streams.spec.whatwg.org/
但是很多方法从来没有用言语来描述,例如它们实际所做的事情。
SQL> with test (period, company) as
2 (select date '2018-01-01', 'A' from dual union all
3 select date '2018-01-02', 'A' from dual union all
4 select date '2018-02-04', 'A' from dual union all
5 select date '2018-02-05', 'B' from dual union all
6 select date '2018-03-06', 'B' from dual union all
7 select date '2018-04-07', 'C' from dual union all
8 select date '2018-05-08', 'A' from dual
9 )
10 select to_char(period, 'mm') month, count(*)
11 from test
12 group by to_char(period, 'mm')
13 order by 1;
MO COUNT(*)
-- ----------
01 2
02 2
03 1
04 1
05 1
SQL>
它仅列出了在什么条件下抛出什么以及返回了什么。 还有其他资源可以更人性化地描述这些东西吗?