简体   繁体   English

查找活动中的 Azure 表存储 select 列查询

[英]Azure table storage select column query in lookup activity

I have azure table storage with table with multiple columns which is my source data for the Lookup activity.我有 azure 表存储,其中包含多列的表,这是我的查找活动的源数据。 I want to retrieve/select specific columns using OData query in the Lookup activity.我想在查找活动中使用 OData 查询检索/选择特定列。 Is there any way to select specific columns in OData.有没有办法在 OData 中 select 特定列。 I tried select='Column_name' which do not works.我试过 select='Column_name' 这不起作用。

在此处输入图像描述

在此处输入图像描述 在此处输入图像描述

No, OData query can only filter the value of column.不可以,OData 查询只能过滤列的值。 You can get the whole table's value and then use this expression to get specific column's value: @activity('Get File Data').output.firstRow.columnName .您可以获取整个表的值,然后使用此表达式获取特定列的值: @activity('Get File Data').output.firstRow.columnName

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM