Quantcast
Channel: Teradata Forums - Database
Viewing all articles
Browse latest Browse all 14773

volatile table as select..with data - not loading data - response (11) by MBSconnection

$
0
0

How do I create a Table from Select Query with Data?
Below is my Query and Table I want to create?

create table TWM_SANDBOX.tbl1_frm_qry1 as
(
SELECT CAST (RP.REGIS_DATETM AS DATE), COUNT(DISTINCT RP.REGIS_PRSNA_ID)
FROM
        iCRM_LOAD.REGIS_PRSNA RP
INNER JOIN
        iCRM.MKTNG_PGM MP
        ON RP.MKTNG_PGM_NBR = MP.MKTNG_PGM_NBR
INNER JOIN
        iCRM.REGIS_PRSNA_EMAIL_ADDR RPE
        ON RP.REGIS_PRSNA_ID = RPE.REGIS_PRSNA_ID
        AND RP.MKTNG_PGM_NBR = RPE.MKTNG_PGM_NBR
WHERE
        RP.MKTNG_PGM_NBR IN (115)
        AND RPE.SUBSCRPTN_OPT_IND = 'I'
        AND RP.PRSNA_STATUS_CODE = 'AC' 
AND RP.REGIS_DATETM BETWEEN (CURRENT_DATE -7) and CURRENT_DATE   
            
) 
with data;
   

Kindly correct my Syntax,
Best Regards,
MBS
 


Viewing all articles
Browse latest Browse all 14773

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>