Först och främst, om värdena är desamma, kommer MySQL inte att uppdatera raden så det påverkade radantalet blir 0.
Lösning för det här problemet:
$query="SELECT count(*) as cnt FROM `songs` WHERE `music_name`='$name', `price`='$price' AND `genre`=$genre" ;
/****get count from the query******/
if(count > 0 ) {
//update the table row
}
else{
//insert the table row
}