mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 16:30:25 +08:00 
			
		
		
		
	
		
			
	
	
		
			17 lines
		
	
	
		
			185 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			185 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 
								 | 
							
								package sqlstmt
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								type (
							 | 
						||
| 
								 | 
							
									IDeleteStmt interface {
							 | 
						||
| 
								 | 
							
										isDelete()
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									DeleteStmt struct {
							 | 
						||
| 
								 | 
							
										*Node
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
										TableSources *TableSources
							 | 
						||
| 
								 | 
							
										Where        IExpr
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								func (*DeleteStmt) isDelete() {}
							 |