Help for this page

Select Code to Download


  1. or download this
       ...
       WHERE asof_date = '$test_date'
       ...
    
  2. or download this
       ...
       s/\$test_date/$test_date/g;
       ...
    
  3. or download this
    #===============================================#
    $ss_source_file   = "C:/code/mla/tmp.sql";
    ...
       print $trancd_sql{$trcd};
    }   
    #====================================================#
    
  4. or download this
    #=====================================================#
    -- tran_code 1752
    ...
          ... and so on, you get the idea
    ;      
    #==================================================#
    
  5. or download this
    SELECT *
       FROM DEV.TRANSACTOPMS
          WHERE TRANSACTION_CD IN ('146','147')
          AND AMT < 0
          AND ASOF_DATE = '30-APR-2011'
    
  6. or download this
    SELECT *
       FROM $schema.TRANSACTOPMS
          WHERE TRANSACTION_CD IN ('146','147')
          AND AMT < 0
          AND ASOF_DATE = '$test_date'