用于检索按年份分组的财政年度数据的 SQL 查询
我有一个数据库,假设有两列(服务日期和发票金额)。我想创建一个 SQL 查询来检索每个财政年度(七月到六月)的数据并对其进行分组。
我有两年的数据,所以这是两个财政年度(即 2 个结果)。
我知道我可以手动执行此操作,方法是创建一个按月分组的 SQL 查询,然后通过 PHP 运行数据以创建财务年度数据,但我宁愿使用 SQL 查询。
欢迎所有想法。
谢谢
I have a database with lets assume two columns (service_date & invoice_amount). I would like to create an SQL query that would retrieve and group the data for each financial year (July to June).
I have two years of data so that is two financial years (i.e. 2 results).
I know I can do this manually by creating an SQL query to group by month then run the data through PHP to create the financial year data but I'd rather have an SQL query.
All ideas welcome.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
产生像下面这样的o/p
which produce o/p like below
这对我在 MSSQL 中有用。希望它对你在 MySQL 中有用
This works for me in MSSQL.. Hope it works for you in MySQL