In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
This article introduces how to execute SELECT statements on multiple tables in the Oracle database, the content is very detailed, interested friends can refer to, I hope it can be helpful to you.
Suppose you want to see the name of the product, and your colleague also wants to display the name of the product type in the same output. Now you know that the product name is saved in the column in the products table, and the second product type name is saved in the name column of the product_types table. The products table and product_types are associated with each other through a foreign key product_type_id, where the product_type_id column in the products table points to the product_type_id column in the product_ types table. So if you select the name and product_type_id columns of the product from the products table, the results should look like this:
SELECT name,product_type_id
FROM products
WHERE product_id=1
If you are retrieving the name column with product_type_id 1 from the product_types table, the result should look like this:
SELECT name,product_type_id
FROM product_types
WHERE product_type_id=1
You can see from the above results that product # 1 is a book. There's nothing complicated so far, but what should we do to see the name of the product and the type name of the product on the same line?
The answer is to join two tables in a query table. Joining two tables means that colleagues need to specify two tables in the FROM clause of the query, and then specify the related columns of the two tables (such as the foreign key in one table and the primary key in the other table). You can also use operators in the WHERE clause of a query. It is also important to note that the FROM clause of the SELECT statement must contain the table where the columns to be used in the join are located, and the columns used in the join are usually associated with foreign keys.
Therefore, according to the function that needs to be implemented, the SELECT clause is in the following format:
SELECT products.name,product_types.name
FROM products,product_types
WHERE products.product_type_id=product_types.product_type_id
On the Oracle database on how to execute SELECT statements on multiple tables to share here, I hope that the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.