kdjonesmtb2
Technical User
Hello
What is the syntax for creating headers for declared
SQL variables
See code below
I would like to have headers for each of
The print statements below
declare @ICD_DISCREPANCY float(2)
declare @CCA_ICD float(2)
declare @QNXT_ICD float(2)
set @CCA_ICD = (select count(distinct ICD) from ##CCA_Claims AS cca_ICD)
set @QNXT_ICD = (select count(distinct DIAGNOSISCODE) FROM ##QNXT_FTP as QNXT_ICD)
print @CCA_ICD
Print @QNXT_ICD
set @ICD_DISCREPANCY = 1-(@QNXT_ICD/@CCA_ICD)
Print @ICD_DISCREPANCY a
What is the syntax for creating headers for declared
SQL variables
See code below
I would like to have headers for each of
The print statements below
declare @ICD_DISCREPANCY float(2)
declare @CCA_ICD float(2)
declare @QNXT_ICD float(2)
set @CCA_ICD = (select count(distinct ICD) from ##CCA_Claims AS cca_ICD)
set @QNXT_ICD = (select count(distinct DIAGNOSISCODE) FROM ##QNXT_FTP as QNXT_ICD)
print @CCA_ICD
Print @QNXT_ICD
set @ICD_DISCREPANCY = 1-(@QNXT_ICD/@CCA_ICD)
Print @ICD_DISCREPANCY a