Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
proc sql;
create table emp_address as
select a.*
,compbl(b.ADDRESS_LINE_1_TX || '/' || b.ADDRESS_LINE_2_TX || '/' || b.ADDRESS_LINE_3_TX || '/'
|| b.SUBURB_NM || '/' || put(b.POST_CD,4.)) as mailing_address
from emp_details a
,dwh.address(dbkey=address_id dbnullkeys=NO) b
where a.address_id = b.address_id
;