i have a table like this:
name code group
john 12
smith 15
how do i insert group for a specified row??
say for 'smith' i have to insert the group.. i tried d following:
INSERT INTO table (group) VALUES ('usher') where code =15
error: Incorrect syntax near the keyword 'where'.
please help!!
thanx in anicipation!!