溪流 :
describe ammas;
Field | Type
-------------------------------------
ROWTIME | BIGINT (system)
ROWKEY | VARCHAR(STRING) (system)
ID | INTEGER
-------------------------------------
对于运行时统计信息和查询详细信息,请运行:DESCRIBE EXTENDED <Stream,Table>;
表 01:
ksql> show tables;
Table Name | Kafka Topic | Format | Windowed
-------------------------------------------------
ANNAT | anna | DELIMITED | false
APPAT | appa | DELIMITED | false
-------------------------------------------------
尝试加入流与 table-01 按预期工作。创建流 finalstream 作为a.id
从where isammas
的左连接appat b
中选择。a.id = b.id
b.id
null
但是,当我尝试根据以下查询将多个表与流连接时:
ksql> SELECT * FROM ammas cd LEFT JOIN appat ab ON ab.id = cd.id LEFT JOIN annat aa ON aa.id =cd.id;
ServerError:io.confluent.ksql.parser.exception.ParseFailedException
Caused by: null
出了什么问题?谢谢。