Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
Which code block demonstrates an incorrect implementation of a stream-static join between a streaming DataFrame streamingDF and a static table userLookup?
streamingDF
userLookup
A
userLookup.join(streamingDF, ["user_id"], how="right")
B
streamingDF.join(userLookup, ["user_id"], how="inner")
C
userLookup.join(streamingDF, ["user_id"), how="inner")
D
userLookup.join(streamingDF, ["user_id"], how="left")