Interface Insert

All Superinterfaces:
InsertOperable, Segment, Serializable, Statement
All Known Implementing Classes:
Insert.Default

public interface Insert extends Statement, InsertOperable
插入语句
Author:
Maning
  • Method Details

    • of

      static Insert of(With with, Table table)
      创建插入语句
      Parameters:
      with - CTE
      table - 表
      Returns:
      语句
    • columns

      Column[] columns()
      要插入数据的列
      Returns:
    • select

      Select select()
      查询
      Returns:
      查询
    • table

      Table table()
      要插入数据的表
      Returns:
    • values

      List<List<?>> values()
      要插入的数据
      Returns:
      数据
    • with

      With with()
      CTE
      Returns:
      CTE