Complete months between two given dates Below script will help in finding the complete months within the 2 given dates.
Continue readingCategory: SQL Basic
Script to find the complete weeks within two given dates
Complete weeks within two given dates Sometimes we need to find out the complete weeks within two given dates. Below
Continue readingRIGHT() function in SQL Server
SQL Server – RIGHT () function Right():- This function returns the specified number of characters from the Right part of the
Continue readingLEFT() function in SQL Server
LEFT() function in SQL Server Left() Function This function returns the specified number of characters from the left part of
Continue readingBetween function in SQL Server
Between function in SQL Server This function is used to select the values within a specified range. These values can
Continue readingSQL SERVER – Data types
Data types in SQL Server In relational database, we store data in tabular form where data is divided into columns.
Continue readingSQL Server – Convert() function
Convert () function in SQL Server Convert () function is used to convert an expression from one data type to another data typeSyntax
Continue readingDatabase Creation using SQL Sever Management Studio (SSMS)
In the previous article (Database Creation using Create Database command), I explained the database creation using the Create database command.
Continue readingDatabase Creation using Create Database command
In SQL Server, database can be created by 2 ways:- Using Create Database command Using SQL Sever Management Studio (SSMS).
Continue readingGroup by…..Having Clause
Group By:- Group By clauses is used to groups rows based on the distinct values of the specified columns. The
Continue reading