MySQL Tutorial
Before you start writing your first MySQL program, you’ve got to learn the basics syntax.
MySQL basic syntax help you for your MySQL career.
Here, we are providing all the basic MySQL syntax.
Command | Description |
---|---|
CREATE | Creates a new table, a view of a table, or other object in the database. |
ALTER | Modifies an existing database object, such as a table. |
DROP | Deletes an entire table, a view of a table or other objects in the database. |
SELECT | Retrieves certain records from one or more tables. |
INSERT | Creates a record. |
UPDATE | Modifies records. |
DELETE | Deletes records. |
GRANT | Gives a privilege to user. |
REVOKE | Takes back privileges granted from user. |