Writing an SQL query to SELECT item from the following table(编写 SQL 查询以从下表中选择项目)
问题描述
我很难编写 SELECT 查询来获取下表中的数据...
I am having a really hard time writing a SELECT query to get a hold of the data in the following table...
这是一张桌子的图片...
Here is a picture of the table...
http://i44.tinypic.com/29dxx81.png
我正在尝试为所有数量大于 10 的项目部件显示部件名称 (pname)...但是,数量似乎只有在子菜单展开时才会出现,我在选择时遇到问题正在……
I am trying to display the names of the parts (pname) for all item parts that have a quantity larger than 10... However, the quantity seems to appear only when the submenu is expanded, and I am having trouble SELECT'ing it...
谢谢
推荐答案
您是否尝试过:
SELECT pname from [TableName] WHERE quantity >= 10
SELECT pname from Parts
INNER JOIN Shipments
ON Parts.ForeignKey = Shipments.ForeignKey
WHERE quantity >= 10
这篇关于编写 SQL 查询以从下表中选择项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:编写 SQL 查询以从下表中选择项目


基础教程推荐
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01