Moving SQL Server Table to Different Filegroup

Database development, Tables

Introduction A table is a logical structure. When you create a table, you typically would not care...
Read More

Virtual Columns and Functional Indexes

Database development, Indexes, MySQL, Oracle, PostgreSQL, SQL Server, Tables

Much too often, we see poorly written complex SQL queries running against the database tables. Such queries may take a very short or a very...
Read More

Understanding SQL Server ALTER TABLE ADD COLUMN Statement

Database development, Statements, Tables

This article describes the SQL Server ALTER TABLE ADD COLUMN statement. The purpose of this statement is to add a new column to an existing...
Read More

Using INNER JOIN to Combine SQL Server Tables and Display Them in ASP.NET Webforms

ASP .NET CORE, Database development, Languages & Coding, Tables

This article describes the ways of using an INNER JOIN to combine results from two tables in the...
Read More

Understanding MySQL TRUNCATE TABLE by Practical Examples

Database development, MySQL, Statements, Tables

MySQL TRUNCATE TABLE statement is a DDL statement used for removing all records from the MySQL table. When we run this command, it drops...
Read More

SQL DROP TABLE Statement and Various Use Cases

Database development, Statements, Tables

The SQL DROP TABLE statement serves to drop the table from the database. It removes the table and its data and indexes associated with it....
Read More

Use Cases for SQL Server MERGE Statement: Syncing Online and History Tables

Database development, SQL Server, Statements, Tables

INTRODUCTION The SQL Server MERGE statement is an incredibly useful tool for carrying out DML...
Read More

Your Ultimate Guide to SQL Join: CROSS JOIN – Part 3

Database development, Programming, T-SQL, Tables

CROSS JOIN is in the spotlight. This article finishes our small series of SQL JOIN-related publications. If you missed the previous two...
Read More

Add Columns to an Existing Table in SQL Server Database

Database development, Tables

Introduction A table is a two-dimensional logical structure and the fundamental means of storing data in relational database management...
Read More

Handling the NULL Values Effectively with the SQL COALESCE Function for Beginners

Database development, Statements, Tables

This article aims to help beginners understand the basics of the T-SQL COALESCE function and its...
Read More
Close