public interface InsertSqlDialect extends SqlDialect
| 限定符和类型 | 方法和说明 |
|---|---|
String |
insertWithIgnore(boolean useQualifier,
String schema,
String table,
List<String> primaryKey,
List<String> columns) |
String |
insertWithInto(boolean useQualifier,
String schema,
String table,
List<String> primaryKey,
List<String> columns) |
String |
insertWithUpsert(boolean useQualifier,
String schema,
String table,
List<String> primaryKey,
List<String> columns) |
boolean |
supportInsertIgnore(List<String> primaryKey,
List<String> columns)
是否支持 insert ignore
|
boolean |
supportInsertInto(List<String> primaryKey,
List<String> columns)
是否支持 insert into
|
boolean |
supportUpsert(List<String> primaryKey,
List<String> columns)
是否支持 insert replace
|
columnName, keywords, leftQualifier, rightQualifier, tableNameboolean supportInsertInto(List<String> primaryKey, List<String> columns)
String insertWithInto(boolean useQualifier, String schema, String table, List<String> primaryKey, List<String> columns)
boolean supportInsertIgnore(List<String> primaryKey, List<String> columns)
String insertWithIgnore(boolean useQualifier, String schema, String table, List<String> primaryKey, List<String> columns)
boolean supportUpsert(List<String> primaryKey, List<String> columns)
Copyright © 2021. All rights reserved.