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.

Topics covered

  • SQL queries and optimization
  • Database design
  • Backup and recovery
  • Performance tuning

Who should read this

  • Developers
  • Database administrators
  • DevOps engineers

123 articles

Find and Delete Duplicate Rows in SQL [100% Working]

Learn how to find and delete duplicate rows in SQL or completely delete records in SQL including Joins using different methods. You can also automate the …

By falgunithakker · 17 min read · databases

SQL Drop Constraint Explained [Practical Examples]

drop constraint, drop constraint sql server, sql drop constraint, drop sql constraint, sql server drop constraint, drop foreign key sql server, alter table drop …

By falgunithakker · 5 min read · databases

SOLVED: SQL ambiguous column name [5 Possible Causes]

ambiguous column name join, sql ambiguous column name, ambiguous column name, ambiguous column name sql, column reference is ambiguous, ms sql ambiguous column …

By falgunithakker · 7 min read · databases

SQL Mapping Carnality Explained with Examples

SQL mapping cardinalities define the relationship between the entities or tables of one relationship set with the entities or tables of another relationship

By falgunithakker · 5 min read · databases

SQL Stored Procedure Explained [Practical Examples]

SQL stored procedures are generally precompiled group of an ordered series of Transact-SQL statements stored into a single logical unit which allow for

By falgunithakker · 9 min read · databases

SQL Transactions Explained [Practical Examples]

SQL Transactions consists of a sequence of SQL statements and/or queries, the SQL standard specifies that a transaction begins implicitly when an SQL

By falgunithakker · 7 min read · databases

SQL Domain Constraints (NOT NULL, Check, UNIQUE)

Domain constraint is used to restrict the values to be inserted in the column or relation, domain constraint defines a valid set of values for a table

By falgunithakker · 8 min read · databases

SQL TOP Explained [Practical Examples]

SQL TOP clause is used to limit the records returned as the result set of SQL select query by specified number of rows or percentage of rows in SQL Server.

By falgunithakker · 8 min read · databases

SQL FULL OUTER JOIN Explained [Practical Examples]

Examples to use SQL Full Outer Join with two tables, three tables, multiple tables with Where Clause, multiple tables with Group by Clause, Using Union Clause, …

By falgunithakker · 8 min read · databases