SELECT
SELECT *|column,column... FROM table
WHERE condition
ORDER BY ASC|DESC
Logical Operators
NOT
AND
OR
DELETEĀ
DELETE * FROM tableĀ --Delete all rows from a table
DELETE FROM tableĀ
DELETE FROM tableĀ --Delete rows from a table satisfying condition
WHERE condition;
SET
UPDATE tableĀ
SETĀ
Ā Ā Ā Ā column = value
WHERE condition;
REPLACE (str, old_substr, new_substr)
UPDATE tableĀ
SETĀ
Ā Ā Ā Ā column = REPLACE(column, old_substr, new_substr)
WHERE condition;