In this tutorial, i’ll show you How toorder by 2 columns in Sql. You need to display records...
Category - SQL
How to Use SQL ‘Order By’ Clause
In this tutorial, we’ll learn How to use order by clause in SQL. Order by clause is used to...
How to Use Group By In SQL
Group By is used to group the row having the same value like “Group by age of person”...
SQL Substring Last 3 Characters
The SUBSTRING() function in SQL is used to extracts characters from a string. Syntax :...
Substring In SQL
The SUBSTRING() function in SQL is used to extracts characters from a string. Syntax :...
How to Use SQL SELECT Statement
SQL Code: Transact-SQL SELECT column1, column2, ... FROM table_name; SELECT * FROM Table_Name /*...
SQL QUERY Library Management System
Problem Scenario: This Scenario is to develop a Library Management System (LMS) to store...
SQL Queries Examples With Answers
This article will cover all Microsoft SQL server interview questions from basic to...
Add Multiple Records To A Table With One Query In Sql
In this post we will learn how to add multiple rows to a table with one query. Example 1: ...
Create A Stored Procedure Calculate Power Of A Number In Sql
In this example we will create a procedure that calculates power of given number. Transact-SQL...