##
delete($hash{abc}{def});
####
%hash = {
abc => undef,
ghi => {
jkl => 1,
mno => 1,
},
};
####
%hash = {
ghi => {
jkl => 1,
mno => 1,
},
};