mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			146 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			146 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
use translog;
 | 
						|
DROP VIEW IF EXISTS `suspendedtoday`;
 | 
						|
 | 
						|
create view suspendedtoday as
 | 
						|
select * from suspended 
 | 
						|
where datediff(datetime, now()) = 0; 
 |