Statements

How to Use a ROUND Function in SQL Server

Database development, Statements

The ROUND function in SQL Server is a powerful tool that allows you to round numeric values to a...
Read More

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 table or column. This alias can be used...
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...
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 generated SQL string parts, input...
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...
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 have keywords or strings of characters in...
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...
Read More
Close