SELECT
The SELECT
statement allows you to read data from one or more tables. To write a SELECT
statement in MySQL, you follow this syntax:
Let’s look at each part of the statement.
First, you start with the SELECT
keyword. The keyword has a special meaning in MySQL. In this case, SELECT
instructs MySQL to retrieve data.
Last updated