How to insert a particular coulmn in table.

  • Thread starter Thread starter arunachalam.arcot
  • Start date Start date
A

arunachalam.arcot

I have a table, where i need to insert values only for one particular
column and teh other column will be manually or will be populated
through another queries. I'm kind of having difficuly in this. I tried
"Insert into " with select statements and also Select Inot, both does
not solve this, because they append a new row insted of inserting it in
a specific row. Any help will be highly appreciated.

Thanks
 
I have a table, where i need to insert values only for one particular
column and teh other column will be manually or will be populated
through another queries. I'm kind of having difficuly in this. I tried
"Insert into " with select statements and also Select Inot, both does
not solve this, because they append a new row insted of inserting it in
a specific row. Any help will be highly appreciated.

Use the UPDATE statement. E.g.:

UPDATE table_name
SET column_name = some_value
WHERE <criteria>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top