ASIF

Category Archives: UI Design

CTE

Common Table Expressions

A Common Table Expression (CTE) is a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement in SQL Server. CTEs are useful for simplifying complex queries and improving code readability by breaking down a query into smaller, more manageable parts. CTEs are defined using the WITH statement and can […]

Installing SQL Server on Azure

Download DOCKER DESKTOP Download Docker desktop from https://www.docker.com/products/docker-desktop/ 2.   DOCKERHUB.COM Register/login at Dockerhub.com. We will sql server download image from here. 3.   SEARCH IMAGE Search Azure SQL Edge Image from docker hub and install on local machine open the terminal and type             docker pull mcr.microsoft.com/azure-sql-edge It will pull docker […]