使用PowerShell编辑SQL文件

问题描述 投票:-1回答:2

SQL新手在这里。我的计算机上有一个包含大量数据的表文件。如何使用PowerShell读取此表并按列/行过滤?

我可以使用DB Browser SQLite手动读取表格,但我想使用PowerShell自动化阅读过程。

sqlite powershell
2个回答
0
投票

双击该文件,用记事本打开?在powershell中将是Notepad <path to the file>,例如:

Notepad C:\NewDirectory\filewithtable.sql

或者如果你想用powershell读取文件......

Get-Content C:\NewDirectory\filewithtable.sql | Write-Host

Please add details to your question, even the content of the file (or an example)

-2
投票

使用正则表达式(正则表达式)解决数据解析。

© www.soinside.com 2019 - 2024. All rights reserved.