在 Powershell 中比较数组

发布于 2024-12-09 14:23:45 字数 358 浏览 1 评论 0原文

问题,我希望能够将对象列表与字符串数组进行比较。或多或少,就像使用 Sql 'IN' 运算符(其中 TableName IN('Table1','Table2','Table3')。

具体来说,我正在使用 SMO 表列表,并且我只想返回按名称包含在表名称数组中的表,

例如: $tablelist = @("地址","电话", "电子邮件")

sl "SQLSERVER:SQL\SERVERNAME\DEFAULT\DATABASES\DATABASEName\TABLES"

$tables = gci |其中{$_.Name -->如果可能的话,我在这里用 $tablelist 做什么?}

TIA! 乙

Question, I'd like to be able to compare a list of objects against an array of strings. More or less, like using the Sql 'IN' operator (where TableName IN('Table1','Table2','Table3').

Specifically, I'm using the SMO table list, and I'd like to return only the tables by name that are contained within an array of table names.

For example:
$tablelist = @("Address","Phone", "Email")

sl "SQLSERVER:SQL\SERVERNAME\DEFAULT\DATABASES\DATABASEName\TABLES"

$tables = gci | where{$_.Name --> wtf do I do here with the $tablelist, if this is possible?}

TIA!
B

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

九厘米的零° 2024-12-16 14:23:45

更新:

好像是在v3.0中添加了-in。以为它一直都在那里!

因此,在 v2.0 中,您必须使用 -contains-eq

$tables = gci | where { $tablelist -contains  $_.Name}

或者

$tables = gci | where { $tablelist -eq $_.Name}

您可以使用多个运算符:

$a = 1,2,3

1 -in $a  #True
4 -in $a  #False

$a -contains 1  #True
$a -contains 4  #True

$a -eq 1  #gives 1
$a -eq 4  #returns nothing

-in运算符类似于您在 SQL 中使用的运算符。与数组一起使用时,-eq 查看该元素是否存在于数组中,如果存在则返回该元素。所以你可以像 if($a -eq 1) 这样使用它

所以在你的情况下,你可以这样做:

$tables = gci | where {$_.Name -in $tablelist }

Update:

Seems like -in is added in v3.0. Assumed that it was there all along!

So in v2.0, you have to use -contains or -eq:

$tables = gci | where { $tablelist -contains  $_.Name}

or

$tables = gci | where { $tablelist -eq $_.Name}

There are multiple operators that you can use:

$a = 1,2,3

1 -in $a  #True
4 -in $a  #False

$a -contains 1  #True
$a -contains 4  #True

$a -eq 1  #gives 1
$a -eq 4  #returns nothing

The -in operator is similar to what you are used to in SQL. When used with array, -eq sees if the element is present in the array and returns the element if so. So you can use it like if($a -eq 1)

So in your case, you can do something like:

$tables = gci | where {$_.Name -in $tablelist }
許願樹丅啲祈禱 2024-12-16 14:23:45
$tables = gci | where{$tablist -contains $_.name}

我认为 -contains 比较运算符是您的最佳选择。

$tables = gci | where{$tablist -contains $_.name}

The -contains comparison operator is your best choice for this I think.

下雨或天晴 2024-12-16 14:23:45

斯科特,
听起来你想要解决这个问题的方法是使用 -Contains。

这是一个使用 SQLPSX 的快速示例

Import-Module SQLServer;
$TableList= 'AWBuildVersion', 'bigProduct', 'bigTransactionHistory', 'DatabaseLog'
Get-SqlDatabase -sqlserver localhost\R2 -dbname AdventureWorks |
Get-SqlTable |
where {$TableList -contains $_.name}|
select name, DataSpaceUsed

Scott,
It sounds like the way you want to go about this is by using -Contains.

Here's a quick example using SQLPSX

Import-Module SQLServer;
$TableList= 'AWBuildVersion', 'bigProduct', 'bigTransactionHistory', 'DatabaseLog'
Get-SqlDatabase -sqlserver localhost\R2 -dbname AdventureWorks |
Get-SqlTable |
where {$TableList -contains $_.name}|
select name, DataSpaceUsed
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文