Using condition inside COUNT() in SQL Server
Using condition inside COUNT() in SQL Server is simple and comes in handy when you cannot use WHERE clause in the select statement.
Using condition inside COUNT() in SQL Server is simple and comes in handy when you cannot use WHERE clause in the select statement.
Here is a simple method which I use to get the sizes of all databases on SQL Server in a single list.
Here is a simple tip to get the list of user created databases in an SQL Server.
Temporal Databases stores information about states of the real world across time. Temporal Database is a database with built-in support for handling data involving time.
Windows 10 remains one of the most widely used operating systems in the world. With that in mind, we put together a few helpful tips for how to prevent viruses on your Windows 10 devices.
As a database programmer, you may need to get result in table format from a stored procedure and store it to a temp table. Here we will see how to insert results from Stored Procedure to a temp table.
Debugging is a vital part web development. In this article, you will read about basics of debugging Python Django web application in VS Code editor.
Here are the simple steps with example for altering existing version tables with data to system-versioned temporal table.
Using simple sql technique, here we will see how to get the list of temporal tables in a database.
How to check and drop a system-versioned temporal table if it exists in the database as temporal tables are different from regular tables?
Here a simple trick to find the name of the history table of a system versioned temporal table using SQL select statement.
Let us see how to check if a specific table is system versioned temporal or not using SQL script. SQL tips to check if temporal table exists.
Temporal table otherwise called as system-versioned table helps you to maintain the version history of the data in the table in a automated way.
In this article let us see a briefing about how Extended Events are comparable with Profiler and Trace. Extended Events vs Profiler Trace.
With example how to get only the common records from two tables using INTERSECT and the advantages of INTERSECT over INNER JOIN.
Getting records from one table which are not present in another table using EXCEPT operator in SQL Server.
In SQL Server there are several ways to concatenate columns to a single string. Here are few methods for concatenating columns based on the version of SQL Server.
Formatting SQL statements or source code of procedures or function in SSMS is a daunting task. Here you will see how to use a plugin to format T-SQL in SSMS.
It will be a good practice to create a code snippet instead of copy paste the template code in several files. Creating code snippet for Python Django web app in VS Code.
Simple step by step illustrations for using database in Python Django website. Here we will be using SQLite database.