1. Create a table using the below code.
CREATE TABLE "EMP_INFO"( "SERIAL" NUMBER,
"GROUP_NAME" VARCHAR2(100),
"EMP_NAME" VARCHAR2(100),
"DESIGNATION" VARCHAR2(100),
"MOBILE_NUMBER" VARCHAR2(20),
"EMAIL_ADD" VARCHAR2(10)
2. Create a Page then Create a Region With Classic Report type.
select * from EMP_INFO
3. Create a button like (Pull Data) to execute the process.
4. Create a Process and use the below code
begin(SERIAL,GROUP_NAME,EMP_NAME,DESIGNATION,MOBILE_NUMBER,EMAIL_AD)select col001, col002, col003 , col004, col005, col006
( apex_data_parser.parse
( p_content=> apex_web_service.make_rest_request_b('https://raw.githubusercontent.com/Qaiums/Fatch-Data-From-Cloud-In-Oracle-Apex/main/emp_info.csv', 'GET')
, p_file_name=> 'emp_info.csv', p_skip_rows=> 1 )
);