Updated on 2024-06-03 GMT+08:00

DROP OPERATOR

Deletes the definition of an operator.

Syntax

DROP OPERATOR [ IF EXISTS ]  name ( { left_type | NONE } , { right_type | NONE } );

Description

  • name

    Name of an existing operator.

  • left_type

    Data type of the left operand for the operator; if there is no left operand, write NONE.

  • right_type

    Data type of the right operand for the operator; if there is no right operand, write NONE.

Examples

For details, see 8.12.8.32-Examples in section "CREATE OPERATOR."