PowerShell脚本中的新功能,只是想问下面如何为我的查询实现分隔列。由于当前查询返回的所有列在导出到csv文件时都放在一列中。
String current_URL = driver.getCurrentUrl();
String previous_URL = null;
while (current_URL != previous_URL)
{
// perform operations;
previous_URL = driver.getCurrentUrl();
// click on next;
current_URL = driver.getCurrentUrl();
}
答案 0 :(得分:2)
试试这个
invoke-sqlcmd -ServerInstance $server -query $ExecuteQuery -querytimeout 60000 | export-csv $OutputFile -NoTypeInformation -append