I have the following SQL:
select origin,destination,to_char(to_date(substr(ship_date,1,6),'YYMMDD'), 'YYYY-MM-DD'),ship_date,trip_number, distinct ship_number from shipment a where a.scc_code in ('xxxxx','xxxxx','xxxxx') and load_status = 'S' and ship_date like '11%' and shipper_id = XXXXXX group by origin,destination,ship_date,trip_number, ship_number
When I run this SQL in Oracle, it gives ORA-00936: missing expression. If I delete a single keyword, it will work fine. Can someone tell me the difference between these two things?
source share