admin管理员组文章数量:1316663
Through query page, I can search all tables where column == "something". Seems we're not able to make AND/OR from UI. So, I would like to know if there is a KQL query that can let search accross tables about column names with multiple criteria. Example : Finding all table where it contains one column named "Customer_ID" and one column named "mail" Thanks :)
Through query page, I can search all tables where column == "something". Seems we're not able to make AND/OR from UI. So, I would like to know if there is a KQL query that can let search accross tables about column names with multiple criteria. Example : Finding all table where it contains one column named "Customer_ID" and one column named "mail" Thanks :)
Share Improve this question asked Jan 29 at 9:23 PierrotPierrot 191 silver badge4 bronze badges 1- Could you share what you have tried? – Balaji Commented Jan 29 at 12:24
1 Answer
Reset to default 0I found the solution:
show database *db_name* schema
| where ColumnName contains "xxx" or ColumnName contains "yyy"
| summarize make_list(ColumnName) by TableName
| where list_ColumnName contains "xxx" and list_ColumnName contains "yyy"
本文标签: kqlFind all table with multiple columns name criteriaStack Overflow
版权声明:本文标题:kql - Find all table with multiple columns name criteria - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742006900a2412139.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论