我需要将subquery
结果存储在变量中,并用于主查询中,以保存查询的执行时间,否则我必须为此再次编写相同的subquery
。代码如下所示:
select DISTINCT
convert(datetime,substring(o.TransactTime, 0,9), 112) + CONVERT(datetime, substring(o.transacttime,10,LEN(o.transacttime)), 114),
o.clordid,
ack.strategyid,
o.Account,
o.AllocAccount,
o.symbol,
o.price,
ISNULL((Select Top 1 L.orderqty from order_msgs_incoming1 L where o.clordid=L.clordid and L.msg_id in (17,18,19,22,59,44) order BY L.transacttime DESC),o.orderqty) orderqty,
o.InClOrdID,
(SELECT ISNULL(ISNULL((Select Top 1 L.orderqty from order_msgs_incoming1 L where o.clordid=L.clordid and L.msg_id in (17,18,19,22,59,44) order BY L.transacttime DESC),o.orderqty)-sum(ex.LastShares),ISNULL((Select Top 1 L.orderqty from order_msgs_incoming1 L where o.clordid=L.clordid and L.msg_id in (17,18,19,22,59,44) order BY L.transacttime DESC),o.orderqty)) from order_msgs_incoming<TblIndx> ex where
o.Clordid = ex.clordid
) RemainingQuantity
from order_msgs_incoming1 o
/*picking ack rows to update strategyId since StrategyId is null for 43 but populated for 46*/
left outer join order_msgs_incoming1 ack on o.clordid = ack.clordid and ack.msg_id=46
where
/*row for new order only since that contains all columns values*/
o.msg_id = 43
我需要这样
select DISTINCT
variableValue=ISNULL((Select Top 1 L.orderqty from order_msgs_incoming1 L where o.clordid=L.clordid and L.msg_id in (17,18,19,22,59,44) order BY L.transacttime DESC),o.orderqty) orderqty,
o.InClOrdID,
(SELECT ISNULL(variableValue-sum(ex.LastShares),variableValue) from order_msgs_incoming<TblIndx> ex where
o.Clordid = ex.clordid
) RemainingQuantity
from order_msgs_incoming1 o
请你帮帮我。
1条答案
按热度按时间yhived7q1#
您可以使用SELECT子句声明一个变量并为其赋值。然后在主查询中使用该变量。请查看以下代码:
也可以使用以下代码更改子查询,以便在变量中使用它: