Google BigQuery标准SQL插入具有嵌套行的嵌套行

时间:2018-10-01 06:58:39

标签: google-bigquery

我试图弄清楚如何运行INSERT(我猜是更新吗?)查询以插入到嵌套的行中,但是后面的行本身也具有嵌套的架构。

例如,我有类似的东西 enter image description here

一般的模板查询是什么样的?

我知道对于线条来说,它看起来像 enter image description here

1 个答案:

答案 0 :(得分:1)

设法解决:

class Game extends React.Component {
  state = {
    score: 0,
    isButtonClickable: true
  }

  onPress() {
    const {isButtonClickable, score} = this.state
    if (isButtonClickable) {
      setTimeout(() => {
        this.setState({isButtonClickable: true})
      }, 2000)
    }
    const newScore = isButtonClickable ? score + 1 : 0
    this.setState({isButtonClickable: false, score: newScore})
  }

  render() {
    <View>
      <View>{this.state.score}</View>
      <Button onPress={() => this.onPress()}</Button>
    </View>
  }
}