MySQL Main Query Types used in PHP to select, insert, update and delete data
MySQL Main Query Types
SELECT
SELECT * FROM tablename
INSERT
|
|
UPDATE
|
|
DELETE
|
|
Note
You will use a lot of WHERE clauses as well along with the above.
e.g.
|
|
In PHP
Calling to MySQL is really easy in PHP, just use the mysql_query() function.
e.g.