vote up 0 vote down star

how can i insert a column value at a specified row

flag

0% accept rate
See Zaagman's reply. You should learn first, before asking. – bortzmeyer May 6 at 9:05
@Bortzmeyer: I do not condone such stupid questions, but your rule would rule out about 70% of all questions on SO. ;-) – Cerebrus May 16 at 6:12

3 Answers

vote up 0 vote down

Try taking a look at UPDATE rather than INSERT.

link|flag
vote up 5 vote down

To learn more about SQL: http://www.w3schools.com/sql/default.asp

More info about INSERT: http://www.w3schools.com/sql/sql_insert.asp

More info about UPDATE: http://www.w3schools.com/sql/sql_update.asp

link|flag
vote up 2 vote down

Not sure if you are trying to insert a new row or update a row that meets certain criteria. If the second is true, you need:

UPDATE table_name 
SET column1 = value, column2 = value2 
WHERE some_column = some_value
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.