Allereerst, als de waarden hetzelfde zijn, zal MySQL de rij niet bijwerken, zodat het betreffende aantal rijen 0 zal zijn.
Oplossing voor dit probleem:
$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
}