只是一个简单的问题,我知道可以按日期计算和分组,尽管我想知道是否有办法让我在一年中这样做。
使用示例表:
2016 Q1 = 7.00
2016 Q2 = 8.00
2016 Q3 = 10.00
2016 Q4 = NULL
将返回类似于:
SELECT COUNT(income_amount) as total FROM example_table GROUP BY YEAR(income_date), QUARTER(income_date)
我目前有:
// for the first example I addressed the element before the last
//
// To get the last element: lis.length - 1
var lis = document.getElementById('content')
.getElementsByTagName('ul')[0].getElementsByTagName('li');
lis[lis.length - 2].style.color='yellow';
// OR
document.querySelectorAll('#content ul li:last-child')[0].style.color='red'
但我收到错误了吗?