Posts

Showing posts with the label mysql basics

Update Query in MySql

Update Query -------------------                                            --> You can update more one column value together.                      --> You can give any condition using [where clause]. Syntax to update in mysql -------------------------- ------- -- Update                   Table-Name  Set                   Column-Name1 = "Value1",                   Column-Name2 = "Value2"     ...