Let's say I have two tables table A and table B and they have one to many relation.
Table A
col1 | Col2
Table B
Col1 | Col3
Now I want to have a Col4 in Table A such that if any row of Col3 is true for a given Col1 value, then i want Col4 in Table A to be set as true else false.
All the updates that happend on Table B should always update my Col4 values in Table A.
Is this achievable thing by using any oracle/PL-SQL features?