The following statement syntax associates operators with an access method and places an entry in the sysopclasses system catalog table for the operator class:
CREATE OPCLASS music_ops FOR music_am STRATEGIES(higher(note, note), lower(note, note)) SUPPORT(compare_octave(note, note), ...)
You must specify one or more strategy functions in the CREATE OPCLASS statement, but you can omit the support function if the access method includes code to build and maintain indexes. The following example specifies none instead of a support-function name:
CREATE OPCLASS special_operators FOR virtual_am STRATEGIES (LessThan, LessThanOrEqual, Equal, GreaterThanOrEqual, GreaterThan) SUPPORT (none)