我想让月份名称按时间顺序排列,而不是按字母顺序排列。这是我的Sql代码。
select SUM(montant_ht)as Achat ,monthname(dim_date.date) as mois
from operation_odoo
join dim_date on operation_odoo.id_date_facturation = dim_date.id_date
where (operation_odoo.id_type_op=1) and (dim_date.Annee= ? or ? is null )
group by mois
答案 0 :(得分:3)
您可以按月订购。我建议:
order by month(max(dim_date.date))
关于您的查询,我建议:
select monthname(d.date) as mois,
sum(o.montant_ht)as Achat
from operation_odoo o join
dim_date d
on o.id_date_facturation = d.id_date
where o.id_type_op = 1 and
( d.Annee= ? or ? is null )
group by mois
order by month(max(d.date));
答案 1 :(得分:2)
您可以按月()使用订单
select
SUM(montant_ht)as Achat
,monthname(dim_date.date) as mois
from operation_odoo
join dim_date on operation_odoo.id_date_facturation = dim_date.id_date
where (operation_odoo.id_type_op=1) and (dim_date.Annee= ? or ? is null )
group by mois
order by month(dim_date.date)
对于SpagoBI,尝试将列month()也添加到查询中
select
SUM(montant_ht)as Achat
,monthname(dim_date.date) as mois
, month(dim_date.date)
from operation_odoo
join dim_date on operation_odoo.id_date_facturation = dim_date.id_date
where (operation_odoo.id_type_op=1) and (dim_date.Annee= ? or ? is null )
group by mois, month(dim_date.date)
order by month(dim_date.date)
答案 2 :(得分:0)
在选择查询中包括月份号和月份号顺序的其他列 确保在分组依据中也包含相同内容
样本查询:
select current_Date,DATE_FORMAT(current_date,'%b') as
m_name,DATE_FORMAT(current_date,'%m') as m_num
order by m_num