This statement is used to conditionally delete data in the specified table (base index) partition.

    This operation will also delete the data of the rollup index related to this base index.

    illustrate:

    1. The optional types of op include: =, >, <, >=, <=, !=, in, not in
    2. Only conditions on the key column can be specified when using AGGREGATE (UNIQUE) model.
    3. When the selected key column does not exist in a rollup, delete cannot be performed.
    4. Conditions can only have an “and” relationship. If you want to achieve an “or” relationship, you need to write the conditions in two DELETE statements.

    Notice:

    1. This statement may reduce query efficiency for a period of time after execution.
    2. The degree of impact depends on the number of delete conditions specified in the statement.
    3. The more conditions you specify, the greater the impact.
    1. Delete the data rows where the value of column k1 is greater than or equal to 3 and the value of column k2 is “abc” in my_table partition p1, p2