Transcript:
SQL is a language designed to find and create and update and delete information from a
database.
Each of the database products such as MySql, SQL Server, Oracle, Access, Advantage
and DB2 have their own form of SQL. In Oracle’s case there is a pretty
sophisticated extension of SQL called PL/SQL containing many more logic “smarts”.
In this tutorial we will be looking at MySql SQL using phpMyAdmin interface.
Major functionality in SQL can be categorized under:
SELECT
INSERT
UPDATE
DELETE
… other major bits of functionality fall under …
CREATE
ALTER
… but we will tackle those another day, along with concepts like …
GRANT
DENY
Let’s go …
If this was interesting you may be interested in this too.