Statements

SQL AS: Usage, Examples, and How it Can Benefit You Best

Database development, SQL Server, Statements

What is the AS statement in SQL? The AS keyword in SQL is used to create a temporary alias for a...
Read More

How to Write Complex Queries in SQL

Database development, Statements

Typical queries in the SELECT * FROM table format are sometimes not enough. When the data for a query is not in one table, but in several,...
Read More

SQL Stuff Function

Database development, Statements

The main idea around the SQL Server function called STUFF is concatenating multiple columns into a single column with more flexibility than...
Read More

Execute Dynamic Query in SQL Server

Database development, Statements, Stored Procedures

Dynamic SQL is a statement constructed and executed at runtime, usually containing dynamically...
Read More

Simple SQL Server Functions to Solve Real-World Problems

Database development, Statements

Introduction Today’s article comes from a scenario we experienced in practice some time ago. We managed a card transaction system...
Read More

MySQL UPDATE: Top 5 Tips for T-SQL Developers

Database development, Languages & Coding, MySQL, Statements, T-SQL

Are you adding MySQL to your list of database skillsets? Then MySQL UPDATE statement is one of the commands you need to learn. We are...
Read More

Understanding of SQL Server UPPER Function

Database development, Statements

There are many cases of SQL lowercase that we need to change for our purposes. For instance, we...
Read More

Understanding SQL DELETE Column from Table

Database development, SSMS, Statements, Tools & technologies

Adding and removing columns are among the most common tasks when you manage tables in databases. And it might seem strange, but many users...
Read More

Understanding DROP TABLE IF EXISTS SQL Statement

Database development, Statements

The T SQL DROP TABLE IF EXISTS statement is used to drop existing database objects. In this article, we are going to study the various use...
Read More

SQL AVG Function: A Complete Guide

Database development, Statements

In mathematics, the Average value represents the middle value that we calculate by dividing the sum...
Read More
Close