I have this
set serveroutput on size 30000
MERGE INTO ADV_TEST_INSTITUTION to_t
USING INSTITUTION from_t
ON (to_t.CALLISTA_INSTITUTION_CD = from_t.INSTITUTION_CD)
WHEN NOT MATCHED THEN
DBMS_OUTPUT.PUT_LINE('not match: ' || from_t.name)
WHEN MATCHED THEN
DBMS_OUTPUT.PUT_LINE('match: ' || from_t.name);
Error:
Error report - SQL Error: ORA-00905: missing keyword 00905. 00000 - "missing keyword"
Is it a way to print value of column?