“Aktualisieren Sie die Zeile in MySQL” Code-Antworten

Aktualisieren Sie die Zeile in MySQL

Update 'tablename' SET columnname = 'value' where 'columnname' = value;
For Example(let say there is a Student Table):

Update Student SET Student_Name = "John" where Student_ID = 101;
Outstanding Osprey

MySQL -Update zum vorhandenen Wert hinzufügen

mysql> UPDATE tableName SET sometotal = sometotal+10 WHERE Id = 4;
Poised Penguin

Aktualisieren Sie die Tabelle MySQL

-- Things in brackets are optional
-- IGNORE modifier updates rows even if errors occur (ie: the rows that cause errors are simply not updated)
UPDATE [IGNORE] table_name 
SET 
    column_name1 = expr1,
    column_name2 = expr2,
    ...
[WHERE 
    condition]; -- WHERE tells us which rows to update based on said condition
CodeHelper

Ähnliche Antworten wie “Aktualisieren Sie die Zeile in MySQL”

Fragen ähnlich wie “Aktualisieren Sie die Zeile in MySQL”

Weitere verwandte Antworten zu “Aktualisieren Sie die Zeile in MySQL” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen