FROM keyword is used to specify the data source (i.e. table) to be queried. Its syntax is: FROM table_name, specify the table to be queried in the SELECT statement; specify the table to be connected in the JOIN operation; in Specify the subtable to be queried in the subquery.
FROM keyword in SQL
The role of FROM keyword
FROM keyword is used to specify the data source to be queried, that is, which table to extract data from.
FROM keyword syntax
<code>FROM table_name</code>
Among them, table_name
is the name of the table to be queried.
Usage of FROM keyword
The FROM keyword is usually used in the SELECT statement to specify the table to be queried. For example:
<code>SELECT * FROM customers;</code>
This query will select all rows and columns from the table named customers
.
FROM keyword in JOIN operation
The FROM keyword can also be used in JOIN operation to specify the table to be connected. For example:
<code>SELECT * FROM customers INNER JOIN orders ON customers.id = orders.customer_id;</code>
This query will join the customers
table and the orders
table and will id
from the customers
table Column matches the customer_id
column in the orders
table.
FROM keyword in subquery
FROM keyword can also be used in subquery to specify the subtable to be queried. For example:
<code>SELECT * FROM ( SELECT * FROM customers WHERE city = 'New York' );</code>
This query will select all rows from the customers
table where the city
column is equal to New York
.
The above is the detailed content of What does from mean in sql. For more information, please follow other related articles on the PHP Chinese website!