Statements

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...
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 statements. Moreover, it is one of the...
Read More

SQL UNION Cheat Sheet with 10 Easy and Useful Tips

Database development, Statements

Having a hard time with SQL UNION? It happens if the results you combined put your SQL Server into a standstill. Or a report that’s been...
Read More

Do You Make These Mistakes When Using SQL CURSOR?

Database development, Statements

For some people, it’s the wrong question. SQL CURSOR IS the mistake. The devil is in...
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

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...
Read More

How to Parse Strings Like a Pro Using SQL SUBSTRING() Function?

Database development, Statements

Do you enjoy parsing strings? If so, one of the indispensable string functions to use is SQL SUBSTRING. It is one of those skills a...
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 operations based on comparing two tables or...
Read More

A Practical Use of the SQL COALESCE Function

Database development, Statements

This article talks about the practical use of the SQL COALESCE function regarding some professional...
Read More
Close