SQLDepot

3 queries found for "Algorithm"

Get all from Algorithm

select * 
from CI_ALG
uploaded by Nuno Rodrigues

Get specific Algorithm

select * 
from CI_ALG
where 
ALG_CD = 'XXXX'
uploaded by Nuno Rodrigues

Retrieve Algorithm Paramter Values

SELECT
  ALG.ALG_CD,
  ALGP.*
FROM
  CI_ALG ALG,
  CI_ALG_PARM ALGP
WHERE
  ALG.ALG_CD = 'INSERT_ALGORITHM_CODE'
AND ALGP.ALG_CD = ALG.ALG_CD
uploaded by Nuno Rodrigues