gpt4 book ai didi

c# - 通过条目获取条目

转载 作者:行者123 更新时间:2023-11-30 19:43:37 24 4
gpt4 key购买 nike

我有以下场景:

文章表

id | description | supplierID
_____________________________
1 | Testarticle | 1

供应商表

id | description 
_______________________
1 | Example Industries

比如读一篇文章的时候SELECT * FROM articles WHERE ID=1,我还需要结果中的供应商描述。

实现此目标的合适方法是什么?

最佳答案

select a.id as ArticleID, a.description as ArticleDescription, a.SupplierID,
s.description as SupplierDescription
from articles a
inner join supplier s on a.supplierID = s.supplierID
where a.id = 1

关于c# - 通过条目获取条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14416684/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com