mysql left join
- by user1019538
I have two table one is index and another is the price structure as under
table : index :
column : trandate ,indexcode
Table : price :
Column: trandate,symbol,price
i want to know the missing price.
I issue the query
select i.trandate,i.indexcode,p.trandate,p.price from index i left join price p on i.trandate = p.trandate where…