SQL performance tuning is a BIG Topic on Databases, and that is not theoretical all the time. It’s a practical thing that must be handled case by case. But here ...
Once you are doing relational databases, LEFT JOIN in SQL is essential for data merging, binding, and manipulating. LEFT JOIN allows you to merge multiple tables without losing records from ...
Variables are the heart of SQL programming and the most powerful tools inside SQL programming. SQL DECLARE Variable allows you to store data temporarily, reuse values in multiple places, calculate ...
Once you’re dealing with databases or troubleshooting SQL-related bugs, it is important to get and check SQL version your system is running.There are a lot of SQL engines available now ...
COALESCE SQL: The COALESCE function looks for the first non-null value from the expression. Once the database reaches a non-null value, stop the traverse through the remaining expressions. Therefore, it is a more versatile ...
In this article, I plan to describe what a common table expression is, and how to write sql common table expression in database programming languages. Other than that, it will ...
In SQL, there are several ways to Oracle SQL limit rows. Limiting rows or selecting the top-most record improves the performance of the query. Also, showing millions of records does ...
How to convert a string to a date in Oracle? Is there a function in Oracle? It is very easy to Oracle cast string to date with the TO_DATE function. ...
The Oracle Count function returns only the number of records available for the attribute. But how to take a Distinct count in Oracle? COUNT ( [ DISTINCT | ALL ] ...
Do you know how many Types of Indexes in Oracle? This article explains the Types of indexes that make considerable performance improvements. Here I explain the main and different types ...