Ultimate access to all questions.
To ensure the mobiles
table contains only unique entries for auditing purposes, which modification should be made to the following streaming query?
.option('readChangeFeed', 'true')
.table('customers')
.select('mobile')
.writeStream
.format('delta')
.option('checkpointLocation', '/tmp/customers/_checkpoints/')
.table('mobiles')```