I have a MySQL table like this.
Table/Animals
Id-Publish-Update-Name
1--17:00---01:00--Dog
2--18:00---01:00--Cat
3--19:00---03:00--Penguin
Add a "Penguin". I did it.
INSERT INTO Animals (Name) VALUES ('Penguin')
Next I want to do is "add Penguin". However, if "Penguin" already exists, update only "Update", do not add new column.