Category: Unqork & No-Code Engineering

Unqork Platform

Unqork is a cloud-based platform as a service (PaaS) that allows you to run applications and services without managing middleware or hardware infrastructure directly  how to know which cloud provider is unqork hosted for client?Unqork hosts and manages customer environments on Amazon Web Services (AWS) and Microsoft Azure. Customers can choose which cloud provider to […]

To separate the uncommon rows of one table (rows that exist in one table but not in another)

Using a LEFT JOIN To isolate the uncommon rows in the table one SELECT t1.*FROM Table1 t1LEFT JOIN Table2 t2 ON t1.id = t2.idWHERE t2.id IS NULL; using Except if database supports. SELECT * FROM Table1EXCEPTSELECT * FROM Table2; UNQORK In unqork we use datawork flow. the merge operator is used with outer option. upper […]

Back To Top