MSSQL Query Blog

Text Encryption and Decryption in SQL Server

Hello everyone, In this article, I will provide information about text encryption and decryption in SQL Server. You can use this type of encryption for data security in SQL Server. The point you need to pay attention to here is that you will use the key when decoding the key...

Listing Updated Tables in SQL Server

Hello everyone, In this article, I will talk about how to list updated tables in SQL Server. In SQL Server, in some cases, it may be desirable to know which tables have been updated. I will describe my transactions using the Northwind database. Let’s check if there is a change...

Using the Nested While Loop in SQL Server

Hello everyone, In this article, I will talk about the use of the nested while loop in SQL Server. Using a nested while loop in SQL Server is the process of adding another loop inside a loop. The logic of the loop works as follows. The outermost loop returns first....

Using While in SQL Server

Hello everyone, In this article, I will tell you about the use of While loop in SQL Server. While loop in SQL Server is a construct that keeps a certain block in the loop by repeating. The loop continues to run until this condition is False. It is important to...

Finding Program Install Date in SQL Server

Hello everyone, In this article, I will give information about finding the installation date of the program in SQL Server. We may need to learn the installation date of our server in SQL Server. You can easily do this using the query below. SELECT createdate AS [SQL Server Install Date]...

Don`t copy text!