Ive created a table in Azure Cosmos DB for PostgreSQL Cluster called teststudents and added some data into it. The table creation is as follows,
CREATE TABLE teststudents (
id SERIAL PRIMARY KEY,
name VARCHAR(100),
departmentHead VARCHAR(100),
examDate DATE,
country VARCHAR(50)
);
INSERT INTO teststudents (name, departmentHead, examDate, country) VALUES
(‘David’, ‘Adam’, ‘2023-11-07’, ‘UK’),
(‘Sonny’, ‘Chris’, ‘2023-10-23’, ‘Australia’);
My requirement is to transfer this data to a Azure Database for PostgreSQL flexible server using Logic.
I am very new Azure and Logic apps and I didn’t find any material online that was useful.So any help is much appreciated.