Ashu
1
Hello
I want to delete some bins with pk value.
Ex: delete bin_name from test.demo where pk=‘foo’
plz provide solution
meher
2
Set the bin to the null value…
Albot
3
delete bin foo in aql:
INSERT INTO test.demo (PK, foo) VALUES (‘mypk’,NULL)
1 Like