You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-10-30 07:25:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			177 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			177 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| DELETE FROM supplier
 | |
| WHERE EXISTS
 | |
|   ( select customer.name
 | |
|      from customer
 | |
|      where customer.customer_id = supplier.supplier_id
 | |
|      and customer.customer_name = 'IBM' );
 | |
| 
 |