mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-05-19 01:15:40 +08:00
12 lines
217 B
Go
12 lines
217 B
Go
package sqlstmt
|
|
|
|
// InsertStmt INSERT 语句
|
|
type InsertStmt struct {
|
|
Base
|
|
Table TableRef
|
|
Columns []string
|
|
Values string // VALUES 部分原始文本
|
|
}
|
|
|
|
func (*InsertStmt) StmtKind() Kind { return KindInsert }
|