Basics of SQL Server ALTER TABLE Statement

Database development, Statements, Tables

This article focuses on the ALTER TABLE statement in SQL Server and the following tasks on SQL...
Read More

SQL Reference Table: How to Create and Write Basic Queries

Database development, Statements, Tables

This article will focus on writing SQL queries against the database reference table with a fairly simple structure to understand and...
Read More

How to Rename a Table Name in SQL Server

Database development, SSMS, Stored Procedures, Tables

One of the most critical database administrator’s duties is managing database objects. For instance, the application logic changes,...
Read More

SQL Server DELETE – Removing One or More Rows from a Table with Slightly Advanced Scenarios

Database development, Statements, Tables, Work with data

The current article focuses on slightly advanced use of the DELETE statement to remove one or more...
Read More

SQL Server Delete Statement: How to Remove One or Multiply Rows from the Table

Database development, Statements, Tables

The right application of the DELETE statement for data removal is crucial, and it involves lots of issues. Still, there are standard...
Read More

CREATE TABLE MySQL vs T-SQL with Syntax Examples

Database development, MySQL, Statements, T-SQL, Tables

Are you a T-SQL developer learning the basics of MySQL? Then, one of the things you might want to learn is MySQL CREATE TABLE statement....
Read More

Difference Between DELETE and TRUNCATE Table in SQL Server

Database development, Statements, Tables

Many articles have been written to describe the difference between the SQL DELETE and SQL TRUNCATE...
Read More

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 which drives it sits on at the storage...
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...
Read More
Close