79142863

Date: 2024-10-30 21:39:52
Score: 0.5
Natty:
Report link

Hello you can try this :

select * 
from my_table 
where Value_C in (
    select Value_C
    from my_table
    group by Value_C
    having count(Value_C) > 1 and max(Group_B)<> min(Group_B)
)  
and Value_D is not null 
order by Value_C;

Output

enter image description here

you can check this here : https://sqlfiddle.com/oracle/online-compiler?id=328fc9b1-3952-4fb8-b989-1acdddd1fcae

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ahmed