To "insert" a field, you use the "update" command, since the record is already in the database.
eg.
update NamesTable set FirstName = 'H' where UserID = '12'
If you don't already have a record in the database (in the above example, the record can be identified from its field UserID), you would need to insert the record
eg.
insert into NamesTable
(UserID, FirstName)
values
('12', 'H')
to do all fields currently in the database:
update NamesTable set field_to_update = 'n' ______________________________________________________________________
There's no present like the time, they say. - Henry's Cat.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.