mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-05-18 17:05:21 +08:00
9 lines
126 B
Go
9 lines
126 B
Go
|
|
package sqlstmt
|
||
|
|
|
||
|
|
// WithStmt WITH 语句
|
||
|
|
type WithStmt struct {
|
||
|
|
Base
|
||
|
|
}
|
||
|
|
|
||
|
|
func (*WithStmt) StmtKind() Kind { return KindWith }
|