mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-05-19 01:15:40 +08:00
11 lines
185 B
Go
11 lines
185 B
Go
package sqlstmt
|
|
|
|
// DeleteStmt DELETE 语句
|
|
type DeleteStmt struct {
|
|
Base
|
|
Tables []TableRef // 删除的表
|
|
Where *Expr
|
|
}
|
|
|
|
func (*DeleteStmt) StmtKind() Kind { return KindDelete }
|