How to delete particular bins using PK value

Hello I want to delete some bins with pk value.

Ex: delete bin_name from test.demo where pk=‘foo’ plz provide solution

Set the bin to the null value…

delete bin foo in aql: INSERT INTO test.demo (PK, foo) VALUES (‘mypk’,NULL)

1 Like

Thank you @Albot @meher