Category

Database Tutorials and Administration Guides

Explore database tutorials including SQL, MySQL, PostgreSQL, MongoDB, and database administration techniques for performance and scalability.

The Databases section helps you learn database management and optimization techniques.

Databases are essential for storing and managing application data efficiently. This category includes tutorials on SQL, MySQL, PostgreSQL, and NoSQL databases.

You may also explore Programming for application integration.

124 articles

Database tutorials illustration with SQL tables, server cylinders, and data connections
databases

How to connect Free SQL database to VS Code?

Connecting a free SQL database to VS Code can be a great way to enhance your development workflow and streamline your data management processes. By using a

Falguni Thakker7 min read
databases

Boost Your Search Game with MySQL Related Tags!

When it comes to organizing large amounts of data on a website, tags can be an incredibly helpful tool. By assigning specific keywords or phrases to different

Falguni Thakker9 min read
databases

How to search SQL for column name? [SOLVED]

A database in SQL has multiple tables and each table has contain multiple columns. In SQL, We can search for a specific column name in a table by using the

Falguni Thakker4 min read
databases

How to use SQL delete with JOIN?

SQL delete where join is the combination of SQL JOIN and SQL delete statement. SQL delete statement is used to delete records from a table where as SQL JOIN

Falguni Thakker5 min read
databases

SQL select first row in GROUP

In this tutorial we will cover different methods and examples to select first row in GROUP BY clause group in SQL. But before that let us create a sample

Falguni Thakker5 min read
databases

Insert results of stored procedure into temp table

In this article of Insert into temp table stored procedure, We have covered overview of SQL stored procedure, how to create stored procedure in SQL, syntax of SQL stored procedure, overview of temp table in SQL, what are …

Falguni Thakker5 min read
databases

How to combine rows into one string in SQL

We have covered an overview of combine string rows, list out all three methods of combining rows into one string which are using COALESCE, USING XML PATH, and using string_AGG methods

Falguni Thakker6 min read
databases

Select duplicate records in SQL table [SOLVED]

In this article of select duplicate records in SQL, we have covered an overview of SQL duplicate records, steps to select duplicate records in SQL , why to

Falguni Thakker5 min read
databases

SQL INNER JOIN Explained with Simple Examples

The SQL INNER JOIN clause allows you to query data from multiple tables. It returns all rows from Table1, Table2, and Table 3 so on with exact matching rows from all tables.

Deepak Prasad12 min read
databases

SQL Date Functions Explained with Practical Examples

Different types of SQL Date Functions explained with examples. Some SQL Date Functions are similar in most database management systems. Few SQL Date Functions like CURDATE() and GETDATE() does the same functionality but …

Deepak Prasad13 min read
databases

SQL CREATE TABLE Statement with Practical Examples

Data stored in the database is logically stored in data tables, using SQL Create Table statement we can create data tables in the database management system

Falguni Thakker8 min read
databases

SQL GROUP BY Statement Explained with Practical Examples

The GROUP BY clause is part of SQL SELECT statement. Optionally it is used in conjunction with aggregate functions to produce resulting group of rows from the database. SQL GROUP BY clause is placed after the WHERE …

Falguni Thakker8 min read
databases

SQL LIKE | SQL NOT LIKE | SQL LIKE WILDCARD Examples

SQL like comparison operator is used to compare or to manipulate text with regular expression. There is a condition where we need to fetch records which do not match with pattern, in such situation we need to use SQL NOT …

Falguni Thakker9 min read
databases

SQL SUBSTRING Function Explained

SQL mainly provides three truncate functions which are working with string. SQL Substring Function, SQL Left Function, SQL Right Function

Falguni Thakker10 min read
databases

SQL Server COALESCE Function with Practical Examples

The SQL Server Coalesce() function is a basic SQL function which is used to evaluate the list of values and return the first occurrence of non-NULL value. The SQL Server Coalesce and IsNull functions both are used to …

Falguni Thakker8 min read
databases

SQL COUNT, AVG, SUM Functions | Aggregate Functions in SQL

SQL COUNT, AVERAGE and SUM are most commonly used aggregate functions of SQL.

Falguni Thakker9 min read
databases

SQL Union Operator Explained [Easy Examples]

SQL Union Operator or clause is a one of the SQL Set operators which is used to merge or combine two or more SQL Select Query results into single result set.

Falguni Thakker8 min read
databases

SQL Left Join Multiple Tables [Easy Examples]

Examples to use SQL LEFT JOIN Multiple tables. In SQL Left join, if a specific row is present in the left table but not in the right, the result will include this row but with a NULL value in each column from the right. …

Falguni Thakker8 min read
databases

SQL NOT NULL Constraint Explained [Easy Examples]

The SQL NOT NULL constraint on an attribute or column specifies that the NULL value is not allowed for that attribute, in other word, the constraint in SQL excludes the null value from the domain of that column values.

Falguni Thakker6 min read
databases

Concat SQL Function Explained [Practical Examples]

Concat SQL function is used to concatenate strings. difference between SQL concat and SQL concat_ws.

Falguni Thakker8 min read
databases

SQL WITH Clause Explained

The SQL WITH clause allows you to give the name to the output of referenced in subsequent queries, this process is interchangeably called as common table expression (CTE) or sub-query refactoring,

Falguni Thakker9 min read
databases

SQL DISTINCT Explained [Practical Examples]

SQL Distinct with SQL select statement, on one column and on multiple columns, difference between SQL Distinct and Group By clause and SQL Distinct with SQL Unique constrain and SQL distinct with Order By has explained …

Falguni Thakker8 min read
databases

SQL BETWEEN Explained with Practical Examples

SQL between syntax and examples. Using with update and delete statement. SQL NOT between examples and syntax, SQL Between Range with Numeric values

Falguni Thakker8 min read
databases

SQL Replace Function Explained

SQL REPLACE performs comparisons based on the collation of the input. To perform a comparison in a specified collation, you can use COLLATE to apply an explicit collation to the input

Falguni Thakker8 min read
databases

SQL RANK Function Explained

Practical examples of SQL RANK function with a single table, multiple tables, with partition argument and ORDER BY ASC and DESC, also mention an example of SQL RANK Function with Where a condition

Falguni Thakker10 min read
databases

SQL If Statement Tutorial [Practical Examples]

practical examples to use sql if statement explained. Use multiple if conditions, sql if else condition, sql nested if else condition with examples

Falguni Thakker8 min read
databases

SQL Not Equal Tutorial

SQL Not Equal is a comparison operator used to compare two not null operand values or an expression, if the left operand value is not equal to the right operand value, then the result will be TRUE otherwise the result is …

Falguni Thakker7 min read
databases

DATEADD SQL Function Tutorial

DATEADD SQL date function that is used for manipulating DateTime datatype values, DATEADD function is used to add or subtract the specific numerical value to a specified datepart which can be a day, month,year, hour, or …

Falguni Thakker8 min read
databases

How to PROPERLY add comments in SQL [Multiple Ways]

We will cover different practical examples to explain how to add SQL comments for Single line comments, Multi-line comments, Inline comments

Falguni Thakker5 min read
databases

SQL Data Types Explained

an overview of SQL data types, also define a list of SQL data types, we have explained each category of data types and described each category data type with the storage range value,

Falguni Thakker11 min read