i want to add information to a table named studentdetails in column named jobchoice1 and it needs to be added on the row where first name is == to Tony, can anyone see whats wrong with my syntax. thx
To err is human, to completely mess up takes a computer.
Code:
mysql> ALTER studentdetails (jobchoice1) VALUES ('Network Administrator') WHERE
firstname == Tony;
To err is human, to completely mess up takes a computer.