All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fun.langel.cql.statement.InsertStatement Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.statement;

import fun.langel.cql.node.Column;
import fun.langel.cql.node.Table;
import fun.langel.cql.node.Value;

import java.util.List;

/**
 * @author Rick(lonelyangel.jcw @ gmail.com)
 * created 2024/9/10 15:43
 **/
public interface InsertStatement extends Statement {

    Table table();

    List into();

    List> values();


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy