how can i insert a column value at a specified row
+2
A:
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
Cannonade
2009-05-06 06:33:21