类 InlineIdsInClauseBulkIdStrategy

  • 所有已实现的接口:
    MultiTableBulkIdStrategy

    public class InlineIdsInClauseBulkIdStrategy
    extends 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 )
         )
     
    作者:
    Vlad Mihalcea