Question : SQL insert question

Hello,

Is it possible to have an SQL insert statement that only inserts data into one field even if the table has many fields?

Answer : SQL insert question

yes.

example:
insert into yourtable (yourfield) values ( 1234 )

now, that created a new row, possibly you actually mean to update an existing row?
Random Solutions  
 
programming4us programming4us