How to delete the first 10 rows from kdb table? I want to remove only the first 10 rows returned from:
select [10] from mytable
I tried using delete with index i, but the number of rows is not decreasing:
count mytable 2201784 delete from mytable where i < 10 count mytable 2201784
Also, the delete operator returns a few lines of my Q console, not sure what it is.
source share