0

テーブル構造は次のとおりです。

Sales: Sales_id, sDate,ccode,qty,amt;     
Challan: Ch_id, ch_date,qty,amt;

必要な情報は次のとおりです。

Id | Date | CCode | Type | Qty | Amt

If sales then type = sales; if challan then type = challan ; order by date

私は次のことを試しました:

select s.cust_code,s.cust_name,s.sales_qty,s.sales_amt,c.cust_code,
c.cust_name,c.challan_qty ,c.challan_amt 
from sales s inner 
join challan c on s.sales_date  = c.challan_date

タイプのカスタム列を配置して、特定の日付に challan または sales を表示するにはどうすればよいですか?

4

1 に答える 1