SELECT Query

This use for view tables with or without filters/conditions.

Syntax

SELECT * FROM table_name;



UPDATE Query

This use for modify the existing records in a table.

Syntax

UPDATE table_name SET column = value WHERE condition;



DELETE Query

This used for delete existing records in a table.

Syntax

DELETE FROM table_name WHERE condition;