Ksql: Left Join Displays columns from stream but not tables
I have one steam and a table in KSQL as mentioned below: Stream name: DEAL_STREAM Table name: EXPENSE_TABLE When I run the below queries it displays only columns from the stream but no table columns are being displays. Is this the expected output. If not am I doing something wrong? SELECT TD.EXPENSE_CODE, TD.BRANCH_CODE, TE.EXPENSE_DESC FROM DEAL_STREAM TD LEFT JOIN EXPENSE_TABLE TE ON TD.EXPENSE_CODE = TE.EXPENSE_CODE WHERE TD.EXPENSE_CODE LIKE '%NL%' AND TD.BRANCH_CODE LIKE '%AM%'; An output of the query is as shown below. NL8232@#0 | AM | null NL0232@#0 | AM | null NL6232@!0 | AM | null