私は1つのテーブルからデータを取得したいが、データが条件に基づいており、これは私のクエリです:異なる条件でのテーブルから同じ列のマージ
Select
Store_ID,
(select Stc_Item_Desc, Imported_Date, Store_ID, Quantity_On_Hand
from DailyStockHistory
where Stc_Item_Desc = 'SAWA/QuickNet prepaid triosim'
and Imported_Date = '3-15-2017'
and Store_ID like 'S%'),
(select Stc_Item_Desc, Imported_Date, Store_ID, Quantity_On_Hand
from DailyStockHistory
where Stc_Item_Desc = 'SAWA/QuickNet prepaid triosim'
and Imported_Date = '3-22-2017'
and Store_ID like 'S%')
from
DailyStockHistory
すべてのヘルプしてください。
ありがとうございます。
は、いくつかのサンプルデータと期待されるデータのサンプルを提供できます。 – csharpbd
SAWA/QUICKnet TrioSIM \t 2017年3月15日のプリペイド\t SCCC387 \t 518 SAWA/QUICKnet TrioSIM \t 2017年3月22日\t SCCC387 \t 251にデータをプリペイド互いに – ahmad
の近くに私はちょうど同じテーブル – MaCron