我看到this问题,但给出的答案仅适用于Linux / Mac。我知道这在Powershell中有效。有没有办法在Windows上使用命令提示符执行相同的操作?
答案 0 :(得分:1)
尝试以下
C:\Program Files (x86)\Google\Cloud SDK>echo SELECT 'Hello' > qq.txt
C:\Program Files (x86)\Google\Cloud SDK>bq query < qq.txt
Waiting on bqjob_r56213d80_0000015b20a3b653_1 ... (0s) Current status: DONE
+-------+
| f0_ |
+-------+
| Hello |
+-------+
C:\Program Files (x86)\Google\Cloud SDK>
这是在Win
上的Google Cloud SDK Shell中运行的