Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
Posted: Tue Oct 03, 2006 8:57 am Post subject:
valeti_sashi,
your query syntax is not correct. Try this query
Code:
SELECT SUBSTR(TS.PRNT_GRP_MNEM,1,1)
,SUBSTR(TS.PRNT_GRP_MNEM,2)
,TS.I_TRAN_CDE_GRP
,TS.GRP_NME
,TS.I_SORT_SEQ
FROM TST.FIR_TRAN_CDE_GRP TS
,(SELECT I_SORT_SEQ
FROM TST.FIR_TRAN_CDE_GRP PS
WHERE PS.I_TRAN_CDE_GRP = TS.I_TRAN_CDE_GRP) AS COL1
WHERE SUBSTR(GRP_PURP_TYP,1,2) = 'IL'
AND SUBSTR(GRP_PURP_TYP,3,5) = 'PRO'
-- AND TR.C_TRAN_RPTG_CHGD = TC.I_TRAN_CDE
-- AND TC._I_TRAN_CDE = '10318'
;
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum