G Master
2010-11-03 16:45:36 UTC
I'm trying to insert data to existing fields, and currently it's adding another row of information and inserting the values there.
What i'd like for it to do is insert data into the existing rows
Here's my current code:
SELECT * FROM customers
WHERE customers_id = 2;
INSERT INTO customers (customers_petName,customers_petPhoto)
VALUES ("Stella","photo.png")
Please help.Thanks