I have a trigger setup to fire after a row is updated or inserted for table A. There is also a table B that references table A, but also has another column which I want to a
Most probably you are running into a naming conflict. Parameter names (IN
and OUT
parameters) are visible in the function body (almost) anywhere and take precedence over unqualified column names. Did you declare col1
as variable in the function?
To avoid the conflict, table-qualify the column name:
SELECT b.col1 FROM tableb b WHERE b.aID = NEW.ID;
This is good practice in any case.
It is also good practice to prefix variable names, so they wouldn't normally conflict with table columns. Like: _col1
.