Quantcast
Channel: UPDATE with Oracle MERGE statement - Database Administrators Stack Exchange
Browsing all 3 articles
Browse latest View live

Answer by Ditto for UPDATE with Oracle MERGE statement

Try this ... create table taba ( cli_id number, fb_flag varchar2(10) ); insert into taba values ( 1, null ); insert into taba values ( 2, null ); insert into taba values ( 3, null ); insert into taba...

View Article



Answer by Balazs Papp for UPDATE with Oracle MERGE statement

Below is an example.SQL> create table t1 as select rownum as id, 'FALSE' as value from dual connect by level <= 3;Table created.SQL> create table t2 as select rownum + 2 as id from dual...

View Article

UPDATE with Oracle MERGE statement

I have following MERGE statement. Table table_A contains list of ID (cli_id) and column fb_flag. The query inside update the column fb_flag in table_A when cli_id is matching. Which works. However when...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images