Idoc LIports

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

WITH CTE(SNDPRN) AS (SELECT RIGHT(SNDPRN,3)

fROM "EDP21"
WHERE SNDPRT = 'US'
GROUP BY SNDPRN)

SELECT A.PLANT_ID ,A.CV_TB


FROM "/DCFC/PLANTID" A
RIGHT JOIN CTE B
ON A.PLANT_ID=B.SNDPRN
WHERE A.CV_TB='T/B'
GROUP BY A.PLANT_ID ,A.CV_TB

You might also like