从 DolphinDB 中的每个对应列获取变量?

get variables from each corresponding columns in DolphinDB?

我想从 table.

的相应列中获取三个变量

我希望通过使用

实现类似的输出
exch product templateID = exec ExchangeID,ProductID,TimeTemplateID from Instruments where InstrumentID=`IF2201 

目前我为每个变量使用一行:

exch= select ExchangeID from Instruments where upper(InstrumentID)==`IF2201
product = select ProductID from Instruments where upper(InstrumentID)==`IF2201
template = select TimeTemplateID from Instruments where upper(InstrumentID)=`IF2201

如何仅使用一行代码实现这一目标?有什么办法可以简化上面的代码吗?

代码可以简化为:

v = exec exch, product, templateID from t where templateID = "IBM"exch, product, templateID = v[0], v[1], v[2]