内连接查询

发布于 2024-10-18 09:06:00 字数 109 浏览 2 评论 0原文

请仔细阅读我描述我的场景的附加图像:

我想要 SQL Join 查询。在此处输入图像描述

Please go thourgh Attached Image where i descirbed my scenario:

I want SQL Join query.enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

虚拟世界 2024-10-25 09:06:00

看一下类似的内容

SELECT  *
FROM    Orders o    
WHERE   EXISTS  (
                    SELECT  1
                    FROM    OrderBooks ob INNER JOIN
                            Books b ON  ob.BookID = b.BookID
                    WHERE   o.OrderID = ob.OrderID
                    AND     b.IsBook = @IsBook
                )

查询将根据给定条件返回所有订单。

因此,它的作用是,当 @IsBook = 1 时,它将返回所有订单,其中存在 1 个或多个链接到该订单的图书条目。如果 @IsBook = 0 它将返回所有订单,其中存在 1 个或多个链接到该订单的非图书条目。

Have a look at something like

SELECT  *
FROM    Orders o    
WHERE   EXISTS  (
                    SELECT  1
                    FROM    OrderBooks ob INNER JOIN
                            Books b ON  ob.BookID = b.BookID
                    WHERE   o.OrderID = ob.OrderID
                    AND     b.IsBook = @IsBook
                )

The query will return all orders based on the given criteria.

So, what it does is, when @IsBook = 1 it will return all Orders where there exists 1 or more entries linked to this order that are Books. And if @IsBook = 0 it will return all Orders where there exists 1 or more entries linked to this order that are not Books.

小霸王臭丫头 2024-10-25 09:06:00

内连接是一种用于根据两个表的公共字段将两个或多个表组合在一起的方法。无论名称如何,两个密钥都必须具有相同的类型和长度。

这是一个例子,
表1
身份证号码 姓名 性别
1 阿卡什男
2 Kedar Male

同样在另一张桌子上
表2
ID 地址号码
1 纳迪普尔 18281794
2 Pokhara 54689712

现在我们可以使用以下 Sql 语句进行内连接操作

select A.id, A.Name, B.Address, B.Number from Table1 A
内连接表2 B
ON A.id = B.id

现在上面的查询给出了一对一的关系详细信息。

Inner join is a method that is used to combine two or more tables together on base of common field from both tables. the both keys must be of same type and of length in regardless of name.

here is an example,
Table1
id Name Sex
1 Akash Male
2 Kedar Male

similarly another table
Table2
id Address Number
1 Nadipur 18281794
2 Pokhara 54689712

Now we can perform inner join operation using the following Sql statements

select A.id, A.Name, B.Address, B.Number from Table1 A
INNER JOIN Table2 B
ON A.id = B.id

Now the above query gives one to one relation details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文