Create Tables and Insert Data in SQL Server

Hi programmers , welcome to another Microsoft SQL server post. this article i’ll write different query to create table and insert records in SQL server. The Create statement is used to create tables and insert statement is used to inserting data into database table. let’s see the queries. 1.Creating basic tables without using any constraints. […]

Install SQL Server 2019 on Windows 10 [2021]

Hi Programmers, welcome to new post Microsoft SQL Server 2019 version in Windows operating system.First we need to download SQL server 2019 . For installation , let’s follow the following steps.Step1. click setup file of SQL server 2019 –>installation –> click New SQL server stand-alone installation. see below image. Step2: Speify types of edition(Developer) –> […]

Install SQL Server Management Studio 18

Hi Programmers, welcome to new post Microsoft SQL Server Management Studio 18 version in Windows operating system.First we need to download SQL server 2019 and ssms 18.8(any latest version). For installation , let’s follow the following steps. Step1.click setup file of SQL server 2019 –>installation –> click New SQL server stand-alone installation. see below image. […]

Subquery in SQL Server | Types of Subquery

Hi Programmers,welcome to new article of ozanecare. this article i’ll write the queries for subquery in Microsoft SQL Server. SUB-QUERIES : If we write select statement in where Clause that can be called it as sub queries or inner queries.Four Types of SUB-QUERIES.1.Single ROW SUB-QUERIES2.Multi ROW SUB-QUERIES3.Multiple Column SUB-QUERIES4.Correlated SUB-QUERIES , Let’s see the queries. […]

Correlated Subquery in SQL Server

Hi Programmers,welcome to new article of ozanecare. this article i’ll write the queries for correlated subquery using Microsoft sql server. The correlated subquery is a sub-query that uses values from the outer query. In this case the inner query has to be executed for every row of outer query andsubquery depends on the outer query […]

Multiply Two Numbers without using * (Multiplication Operator) in C#

Hi Programmers, welcome to new article of c#.net. this article i’ll write the program to Multiply Two Numbers without using Multiplication Operator in C# console application. To Achieve the output we should use Logical XOR operator , Shift operator and Conditional AND operator. Let’s see the codes. Directly Test Below codes into Editor. Happy Coding…Thanks.