Existing store procedure untuk get graph, body, data table

This commit is contained in:
2024-07-30 09:43:23 +07:00
parent 4e0753f167
commit 702d668d07
8 changed files with 231 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
begin
select distinct
Nat_TestName,
Nat_TestCode
from one_etl.mgm_header
join nat_test on Nat_TestCode = Mgm_HeaderNat_TestCode
and Nat_TestIsActive = 'Y'
and Nat_TestIsPrice = 'Y'
where Mgm_HeaderIsActive = 'Y' and Mgm_HeaderMgm_McuID = PID
order by Nat_TestCode;
end