Separating letters and numbers from strings in SQL Server
Here is a simple SQL Server user defined function for separating letters and numbers from a given string.
Here is a simple SQL Server user defined function for separating letters and numbers from a given string.
In SQL Server there are several ways to convert an integer month number to a month name. Let’s see a few of the methods with examples.
There are couple of different ways to format a number with commas in SQL Server. Let see them in detail.
To calculate the percentage in an Sql statement, we can use the basic percentage arithmetic formula along with some basic SQL Server functions
Exiting from single-user mode in SQL Server involves resetting the database to multi-user mode. Here’s how to exit single-user mode.
Learn how to group datetime data by date without considering the time component in SQL. Discover practical SQL queries using CAST or CONVERT functions for effective data aggregation.
While cursors can be useful in certain scenarios, they also come with both advantages and disadvantages. Let’s explore the advantages and disadvantages of cursors.
To backup a SQL Server database to a SQL script file, you can use the SQL Server Management Studio (SSMS). Here is the step-by-step instructions.
IIF and CHOOSE are two logical functions in SQL Server used for different purposes. Here we will see the competition of IIF vs CHOOSE.
Here is a simple tip to insert multiple records in an SQL Server database table with a single SQL insert query.
In rare situations like database level permission issues, you may need to drop all the tables from a SQL Server database and recreate them.
CHOOSE is a Transact-SQL function used to return a single value form a list based on the specific index. Let’s see how to use CHOOSE function.
In this article, we will see how to make an SQL Script to sleep for some time with examples.
Let us see with example on how to calculate the mathematical statistical mode in SQL Server.
Here you will see with a simple example on using an existing TSQL function to calculate the mean in SQL Server.
One another simple method to get the execution time in milliseconds in SQL Server Management Studio (SSMS)
Here we will see couple of methods to perform an IF…THEN Operation in SQL Server SELECT statement.
Developing an application with database, frequently you will need to provide option to update if a row exists else insert a row.
There is no straight forward way to update identity values. Here is a workaround I have followed to get the work done.
Here is one another simple way to calculate median using the PERCENTILE_CONT function introduced in SQL Server 2012.