SQL - 从 SQL 表中获取类别名称
我的数据库中有一个表,用于存储订单信息。每个订单都有OrderID、CategoryName、ProductName
。 CategoryName
用于了解每个产品属于哪个类别。
我将如何编写获取 categorynames
的 SQL 查询。我的表中有重复的categoryname
,如果有重复的categoryname
,则只有一个该类型的categoryname
。
SQL 查询是什么样的?
非常感谢任何帮助。
I have a table in my database where I store order information. Each order has OrderID, CategoryName, ProductName
. The CategoryName
is for knowing which category each product belongs to.
How would I write a SQL query that gets the categorynames
. I have duplicate categoryname
in the table, if there are duplicate categoryname
, then only one categoryname
of that type.
How does a SQL query for that look like?
Any help is very appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者你也可以使用这个语法
alternatively you can have this syntax as well