My SQL
My SQL
Select Syntax...
SELECT * FROM table_name;
MySQL Insert Command...
MySQL Query statement "INSERT INTO" is
used to insert new records in a table .
Insert Syntax...
INSERT INTO table_name (column, column1,
column2, column3, ...) VALUES (value,
value1, value2, value3 ...)
MySQL UPDATE Command...
MySQL Query statement "UPDATE" is used to
modify data in a table.
Update Syntax...
UPDATE table_name SET column=value,
column1=value1,... WHERE
someColumn=someValue
MySQL Delete Command...
MySQL Query statement "DELETE" is used to
delete data from a database table.
Delete Syntax...
DELETE FROM tableName WHERE someColumn =
someValue
The MySQL WHERE Clause
The WHERE clause is used to filter records.
It is used to extract only those records
that fulfill a specified condition.
Where Syntax...
SELECT column1, column2, ...
FROM table_name
WHERE condition;
Note: The WHERE clause is not only used
in SELECT statements, it is also used in UPDATE, DELETE,
etc.!
Conclusion:
MySQL is a relational database that organizes data based
Presentation by:
S.M.Zishan Ali
Student: ExcelR