Hi.

I want to change the parameter of one field in my products table. The product's owner is currently listed as "master," and I want to change it to "Susan." I'm not sure what type of query I should use: SELECT, ALTER TABLE, CHANGE....?

I've come up with this skeleton:

SELECT ,master, from product CHANGE to ,Susan,

Would something like that work? I don't think my syntax is correct and this is too important a table for me to mess up.

Thanks!