Is it possible to enter data in some specific row in some specific column ,in some previously created database.. if ya then how..
if anyone can help me ...
regards nimeesh
You may try;
UPDATE <table_name> SET <column1_name>=value,<column2_name>=value,... WHERE <row_id>=id
row_id is the unique identifier for the row you wish to prosess.
Regards Kjell Inge Sandvik
use following for your problem..
UPDATE table_name SET column1_name=value,column2_name=value,... WHERE rowid=id
prefere rowid is primary key or unique key with in table..
try this out......