Class InlineIdsInClauseBulkIdStrategy

  • All Implemented Interfaces:
    MultiTableBulkIdStrategy

    public class InlineIdsInClauseBulkIdStrategy
    extends java.lang.Object
    implements MultiTableBulkIdStrategy
    This bulk-id strategy inlines identifiers of the rows that need to be updated or deleted using an IN clause:
     delete
     from
         Doctor
     where
         ( id ) in (
             ( 1 ),
             ( 2 ),
             ( 3 ),
             ( 4 )
         )