project-away 運算子
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
從輸入數據表選取要從輸出數據表中排除的數據行。
語法
T | project-away
ColumnNameOrPattern [,
...]
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
T | string |
✔️ | 要從中移除數據行的表格式輸入。 |
ColumnNameOrPattern | string |
✔️ | 要從輸出中移除的一或多個數據行名稱或數據行通配符模式。 |
傳回
具有未命名為自變數之數據行的數據表。 包含與輸入數據表相同的數據列數目。
提示
您可以在 project-away
原始資料表或做為查詢的一部分計算的任何資料行。
注意
結果中的數據行順序取決於其在數據表中的原始順序。 只會卸除指定為自變數的數據行。 結果中會包含其他數據行。
範例
輸入資料表 PopulationData
有 2 個資料列: State
和 Population
。 項目離開數據 Population
行,而您留下的狀態名稱清單。
PopulationData
| project-away Population
下表僅顯示前10個結果。
州/省 |
---|
阿拉巴馬州 |
阿拉斯加州 |
亞利桑那州 |
阿肯色州 |
加利福尼亞州 |
科羅拉多州 |
康涅狄格州 |
德拉瓦州 |
哥倫比亞特區 |
佛羅里達州 |
... |
使用資料行名稱模式進行項目刪除
下列查詢會從 「session」 一詞開始移除數據行。
ConferenceSessions
| project-away session*
下表僅顯示前10個結果。
會議 | 擁有者 | 參與者 | URL | level | starttime | duration | time_and_duration | kusto_affinity |
---|---|---|---|---|---|---|---|---|
PASS Summit 2019 | Avner Aharoni | https://www.eventbrite.com/e/near-real-time-interact-analytics-on-big-data-using-azure-data-explorer-fg-tickets-77532775619 | 2019-11-07T19:15:00Z | 星期四,11 月 7 日,上午 11:15-12:15 PST | 焦點 | |||
PASS 峰會 | Rohan Kumar | Ariel Pisetzky | https://www.pass.org/summit/2018/Learn/Keynotes.aspx | 2018-11-07T08:15:00Z | 90 | 星期三,11月7日,上午8:15-9:45 | 提及 | |
Intelligent Cloud 2019 | Rohan Kumar | 亨寧·勞奇 | 2019-04-09T09:00:00Z | 90 | 星期二, 4 月 9 日, 上午 9:00-10:30 | 提及 | ||
Ignite 2019 | 傑峰 | https://myignite.techcommunity.microsoft.com/sessions/83940 |
100 | 2019-11-06T14:35:00Z | 20 | 週三,11 月 6 日上午 9:35 - 上午 9:55 | 提及 | |
Ignite 2019 | Bernhard Rode | 樂海當,里卡多·尼佩爾 | https://myignite.techcommunity.microsoft.com/sessions/81596 |
200 | 2019-11-06T16:45:00Z | 45 | Wed, Nov 6, 11:45 AM-12:30 PM | 提及 |
Ignite 2019 | Tzvia Gitlin | 特洛伊納 | https://myignite.techcommunity.microsoft.com/sessions/83933 |
400 | 2019-11-06T17:30:00Z | 75 | 11月6日,下午12:30-1:30 | 焦點 |
Ignite 2019 | 傑峰 | https://myignite.techcommunity.microsoft.com/sessions/81057 |
300 | 2019-11-06T20:30:00Z | 45 | 11月6日,下午3:30-4:15 | 提及 | |
Ignite 2019 | Manoj Raheja | https://myignite.techcommunity.microsoft.com/sessions/83939 |
300 | 2019-11-07T18:15:00Z | 20 | 週四,11月7日,下午1:15-1:35 | 焦點 | |
Ignite 2019 | Uri Barash | https://myignite.techcommunity.microsoft.com/sessions/81060 |
300 | 2019-11-08T17:30:00Z | 45 | 星期五, 11 月 8 日,上午 10:30-11:15 | 焦點 | |
Ignite 2018 | Manoj Raheja | https://azure.microsoft.com/resources/videos/ignite-2018-azure-data-explorer-%E2%80%93-query-billions-of-records-in-seconds/ | 200 | 20 | 焦點 | |||
... | ... | ... | ... | ... | ... | ... | ... | ... |
相關內容
- 若要從輸入中選擇要保留在輸出中的數據行,請使用 project-keep。
- 若要重新命名資料列,請使用
project-rename
。 - 若要重新排序資料列,請使用
project-reorder
。