我从powershell 2.0
对sql server数据库进行了以下查询$fec_fin = Invoke-Sqlcmd -Query "select date From table where date >= GetDate() ORDER BY date"
此处$fec_fin
是DataRow
类型的变量,我需要它为DateTime
类型。
答案 0 :(得分:0)
如果该列是日期时间,请尝试:
$fec_fin.date
否则,请尝试
[Datetime]$fec_fin.date