LoginSignup
0
0

More than 3 years have passed since last update.

BigQueryで虚無からSQLだけでデータを作る

Posted at

テストデータを作るときに便利!

カラム名付きリレーション

UNNESTARRAYSTRUCTを使えば、カラム名付きリレーションを作り出せる。

#standardSQL
SELECT * FROM UNNEST(ARRAY<STRUCT<id INT64, name STRING>>
[
  (1, 'COMPパウダー')
  , (2, 'COMPグミ')
  , (3, 'COMPドリンク')
])
id name
1 1 COMPパウダー
2 2 COMPグミ
3 3 COMPドリンク
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0