请问:

我在使用Flink CDC SQL CLI的时候,想将关联的两张表的一对多关系 
映射成ARRAY[ROW(userBankNo,createTime)]的形式,要怎么映射呢?
  表aa
  id, userId
  表 bb
  userId,userBankNo,createTime

select  * from aa as a left join bb as b where a.userId=b.userId

谢谢!

回复