I create my table by doing so:
CREATE TABLE IF NOT EXISTS table_name (uuid VARCHAR(128), item VARCHAR(48), value FLOAT(11))
When I insert values, I want UUID and ITEM together to unique. By that I mean, if there is an entry where uuid and item matches the new values, it will update that one. If not, it will create a new one. So I don't want UUID to have a unqiue key, nor ITEM. But I sorta want them to become unique together. So there can't be 2 entries where both UUID and ITEM match the other entry's UUID and ITEM.
If my explanation wasn't awful, does anyone know how that could be done?