PostgreSQL - Triggers in PostgreSQL
You created this trigger but it does not run when you insert data:
What is the likely problem?
CREATE TRIGGER log_insert AFTER INSERT ON sales EXECUTE FUNCTION log_sale();
What is the likely problem?
