sql里树形结构分组排序?
创建表T1(thisvarchar(10),parentvarchar(10))
插入T1(this,parent)
值(id1,空)
,(id2,空)
,(id3,id1)
,(id4,id2)
,(id5,id3)
,(id6,id3)
,(id7,id4)
,(id8,id7)
SQLserver的cte函数
用树(this,parent,root,depth)作为(
selectthis,par
oraclesql报表统计,怎么按订单类别,分组显示订单总数和交易成功订单数?
选择单词。order_type作为订单类型,COUNT(ORDER.ORDER_ID)作为订单总数,fromorderleftjoin(selectORDER_TYPE,COUNT(ORDER_ID)assuccccountfroorderwherestatus_IDORDER_SUCCESSGROUPBYORDER_TYPE)或eonORDER。订单_类型。ORDER_TYPEGROUPBYord。订单_类型;另一种方法是选择order_type作为订单类型,STATUS_IDAS订单状态,COUNT(ORDER_ID)作为ORDERgroupbyORDER_type,status_id找出按订单类型的不同状态分组的订单数,然后找出代码中的订单总数。