mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
		
			137 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			137 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
 | 
						|
CREATE TRIGGER "MyTableName_Trig" AFTER INSERT OR DELETE OR UPDATE
 | 
						|
ON "MyTableName"  FOR EACH ROW EXECUTE PROCEDURE
 | 
						|
"recordchange" ();
 | 
						|
 |