Pertama-tama, jika nilainya sama, MySQL tidak akan memperbarui baris sehingga jumlah baris yang terpengaruh akan menjadi 0.
Solusi untuk masalah ini :
$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
}