选择查询从同一表中加入数据
下表中的条形码值多次存在于某些事务类型。我正在使用一种特定的事务类型(例如'输入')通过选择查询过滤数据,但也喜欢来自另一种交易类型的数据,该数据与要通过的特定条形码匹配。
数据:
| Weight | Barcode | Transaction_Type | Order_No |
|:------:|:-------:|:----------------:|:--------:|
| 27.81 | 1111222 | PO | 101 |
| 27.81 | 1111222 | Input | 0 |
| 22.64 | 1111333 | PO | 102 |
| 22.64 | 1111333 | Input | 0 |
所需输出:
| Weight | Barcode | Transaction_Type | Order_No |
|:------:|:-------:|:----------------:|:--------:|
| 27.81 | 1111222 | Input | 101 |
| 22.64 | 1111333 | Input | 102 |
The barcode values in the table below exist multiple times for certain transaction types. I'm filtering the data through a SELECT query using one specific transaction type (e.g. 'Input'), but would also like the data from another transaction type that matches with the specific barcodes being pulled through.
Data:
| Weight | Barcode | Transaction_Type | Order_No |
|:------:|:-------:|:----------------:|:--------:|
| 27.81 | 1111222 | PO | 101 |
| 27.81 | 1111222 | Input | 0 |
| 22.64 | 1111333 | PO | 102 |
| 22.64 | 1111333 | Input | 0 |
Desired Output:
| Weight | Barcode | Transaction_Type | Order_No |
|:------:|:-------:|:----------------:|:--------:|
| 27.81 | 1111222 | Input | 101 |
| 22.64 | 1111333 | Input | 102 |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)