内连接查询
请仔细阅读我描述我的场景的附加图像:
我想要 SQL Join 查询。
Please go thourgh Attached Image where i descirbed my scenario:
I want SQL Join query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
请仔细阅读我描述我的场景的附加图像:
我想要 SQL Join 查询。
Please go thourgh Attached Image where i descirbed my scenario:
I want SQL Join query.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
看一下类似的内容
查询将根据给定条件返回所有订单。
因此,它的作用是,当
@IsBook = 1
时,它将返回所有订单,其中存在 1 个或多个链接到该订单的图书条目。如果@IsBook = 0
它将返回所有订单,其中存在 1 个或多个链接到该订单的非图书条目。Have a look at something like
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.内连接是一种用于根据两个表的公共字段将两个或多个表组合在一起的方法。无论名称如何,两个密钥都必须具有相同的类型和长度。
这是一个例子,
表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.