SQL Tutorial

SQL Tutorial SQL Introduction SQL Syntax SQL Data Types SQL OPERATORS SQL COMMANDS SQL Queries

SQL Database

SQL Create Database SQL DROP Database SQL SELECT Database

SQL Table

SQL TABLE SQL CREATE TABLE SQL COPY TABLE SQL ALTER TABLE SQL DELETE SQL TRUNCATE TABLE SQL DROP TABLE SQL UPDATE TABLE SQL INSERT TABLE

SQL SELECT

SQL SELECT Statement SQL SELECT WHERE Clause SQL SELECT IN Operator SQL BETWEEN Operator SQL SELECT BETWEEN Operator SQL SELECT AND Operator SQL SELECT OR Operator SQL SELECT LIKE Operator SQL SELECT DISTINCT SQL SELECT SUM SQL SELECT MAX SQL SELECT MIN SQL SELECT AVG

SQL Clause

SQL WHERE Clause SQL GROUP BY CLAUSE SQL ORDER BY Clause SQL HAVING Clause

SQL INSERT

SQL INSERT Statement SQL INSERT INTO Statement SQL INSERT INTO Values SQL INSERT INTO SELECT SQL Insert multiple rows

SQL JOIN

SQL JOIN SQL Inner Join SQL Left Join SQL Right Join SQL Full Join SQL CROSS Join

SQL OPERATOR

SQL Comparison SQL LOGICAL Operator SQL Cast Operator SQL Arithmetic

Difference

SQL vs NOSQL WHERE vs HAVING DELETE vs DROP GROUP BY vs ORDER BY DROP vs TRUNCATE SQL IN vs SQL EXISTS Difference between Delete, Drop and Truncate in SQL

MISC

SQL SubQuery SQL CASE Commit and Rollback in SQL Pattern Matching in SQL DDL Commands in SQL DML Commands in SQL Types of SQL Commands SQL COUNT SQL Primary Key SQL FOREIGN KEY SET Operators in SQL Check Constraint in SQL SQL EXCEPT SQL VIEW SQL WHERE Statement SQL CRUD Operation Where Condition in SQL TCL Commands in SQL Types of SQL JOINS SQL Nth Highest Salary SQL NOT OPERATOR SQL UNION ALL SQL INTERSECT SQL Data Definition Language SQL Data Manipulation Language SQL Data Control Language SQL CONSTRAINTS SQL Aggregate Operators SQL KEYS Codd’s Rules in SQL What is SQL Injection? Trigger In SQL SQL WHERE Multiple Conditions Truncate function in SQL SQL Formatter WEB SQL SQL Auto Increment Save Point in SQL space() function in SQL SQL Aggregate Functions SQL Topological Sorting SQL Injection SQL Cloning Tables SQL Aliases SQL Handling Duplicate Update Query in SQL Grant Command in SQL SQL SET Keyword SQL Order BY LIMIT SQL Order BY RANDOM

How To

How to use the BETWEEN operator in SQL How To Use INNER JOIN In SQL How to use LIKE in SQL How to use HAVING Clause in SQL How to use GROUP BY Clause in SQL How To Remove Duplicates In SQL How To Delete A Row In SQL How to add column in table in SQL ? How to drop a column in SQL? How to create a database in SQL? How to use COUNT in SQL? How to Create Temporary Table in SQL? How to Add Foreign Key in SQL? How to Add Comments in SQL? How To Use Group By Clause In SQL How To Use Having Clause In SQL How To Delete Column In Table How To Compare Date In SQL How index works in SQL How to calculate age from Date of Birth in SQL How to Rename Column name in SQL What are single row and multiple row subqueries?

space() function in SQL

 This function returns a string with a specified number of spaces. If we specify a number, it returns the strings having that specified number of spaces. SPACE Function is available in MySQL Server also.

Syntax:

SPACE (number)

SPACE Function only accepts a single parameter. In that the number denotes the specific number of spaces.

This Function will return a value:

  • If the provided number is a positive integer, then the Function will return a string having the specified number of spaces.
  • As the number of spaces should only be positive, if we give a negative number the function will return NULL.

Space Function is applicable in the below mentioned versions:

  • SQL Server 2005
  • SQL Server 2008
  • SQL Server 2008 R2
  • SQL Server 2012
  • SQL Server 2014
  • SQL Server 2016
  • SQL Server 2017

Let’s now look into various examples which describes the functionality of the SPACE Function.

Example1:

SELECT SPACE (20) AS SOLUTION;

Output:

Solution
------------------------------------------|
					
------------------------------------------|

In the above we are resulted with 20 spaces as the solution.

Example2:

With this example we can understand the functionality of the SPACE Function much better.

SELECT ‘Hello’ + SPACE(15) + ‘World!’ AS Solution;

Output:

Solution
---------------------------
Hello               World!
---------------------------

As we mentioned a SPACE of 15 characters in the middle of “hello” and “world!”, we are given the same in the output as Solution.

Example3:

When we give a negative value as an argument to the SPACE Function, it returns a NULL value.

SELECT SPACE ( -5) AS Solution;

Output:


Solution
--------------
NULL
--------------

So, as the argument given is a negative integer we are produced with the NULL Value.

Example4:

Consider a Student Table having ID, FirstName, LastName, and gender as the Columns/Fields of the table.

To print all the student names with specified number of spaces in between the FirstName and LastName, we will write the below query.

SELECT FirstName + SPACE(7) + LastName AS ‘Student Name’ FROM Student;

Output:

Student Name
----------------------------
Sandeep       Jain
Kiran       Priya
Alia       Bhatt
Kaira       Adwani
----------------------------

The main Advantage of using SPACE Function is that we can get to know the number of spaces present between two strings.

Consider the below query

select ‘Data’ + ‘    ‘ + ‘Structures’ ;

In here we could not guess the number of spaces in between the two strings. At random we can guess the number as 3 or 4 spaces.

If we write the same query using SPACE Function,

select ‘Data’ + SPACE (3) + ‘Structures’ ;

we can easily determine the number of spaces in between the given two strings.

Example5:

We can also give a variable as the argument into the SPACE() Function. So, we should declare the value of the variable before giving it into the Function.

DECLARE @size_of_space int
SET @size_of_space = 6
select ‘Six Space’ + SPACE(@size_of_space) + ‘Away!’ as Solution;

Output:
Solution

Solution
-------------------------
Six Space      Away!
-------------------------