我无法在一个财政年度获得所有的积蓄。财政年度从今年4月开始到明年3月。
这是表结构
CREATE TABLE IF NOT EXISTS `savings` (
`id` int(11) NOT NULL,
`account_no` int(11) NOT NULL,
`financial_year` int(11) NOT NULL,
`reciept_date` date NOT NULL,
`data_entry_date` date NOT NULL,
`savings_reciept_no` int(11) NOT NULL,
`amount` int(10) NOT NULL,
`starting_balance` int(11) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=621 DEFAULT CHARSET=latin1;
这是sqlfiddle链接http://www.sqlfiddle.com/#!9/bee53/18 我在查询中缺少什么? 有没有更好的查询在财政年度获得结果?