UPDATE YourTable
SET Col1 = OtherTable.Col1,
Col2 = OtherTable.Col2
FROM (
SELECT ID, Col1, Col2
FROM other_table) AS OtherTable
WHERE
OtherTable.ID = YourTable.ID
UPDATE employees
SET
address = '1300 Carter St',
city = 'San Jose',
postalcode = 95125,
region = 'CA'
WHERE
employeeID = 3;
UPDATE Table_name
-- The desired value
SET Column_name = desired_value
-- Any value, of the item, of which one value you want to change
WHERE Column_name = value
UPDATE sakila.actor # table to update
SET first_name = "Bryan", last_name = "Besmond" # fields to be added/updated
WHERE actor_id = 201; # boolean condition
private void btnUpdateData_Click(object sender, EventArgs e)
{
try
{
SqlComm = new SqlCommand("UPDATE MyDataTable ('DataDesc', 'DataDate', 'DataQty') VALUES ('@DataDesc', '@DataDate', '@DataQty') WHERE DataID ='@DataID'", SqlConn);
SqlComm.Parameters.AddWithValue("@DataID", txtDataID.Text);
SqlComm.Parameters.AddWithValue("@DataDesc", txtDataDesc.Text);
SqlComm.Parameters.AddWithValue("@DataQty", int.Parse(txtDataQty.Text));
SqlComm.Parameters.AddWithValue("@DataDate", dtpDataDate.Value);
SqlComm.ExecuteNonQuery();
MessageBox.Show("Data updated!", "DB Connection With App.Config", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
Clear();
DisableButtons();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
UPDATE computer SET cores = {}, cpu_speed = {}, ram = {}, cost = {} WHERE name = '{}'