Udostępnij za pośrednictwem


SPACE (Transact-SQL)

Returns a string of repeated spaces.

Ikona łącza do tematu Transact-SQL Syntax Conventions

Składnia

SPACE ( integer_expression )

Arguments

  • integer_expression
    Is a positive integer that indicates the number of spaces. If integer_expression is negative, a null string is returned.

    For more information, see Expressions (Transact-SQL)

Return Types

varchar

Uwagi

To include spaces in Unicode data, or to return more than 8000 character spaces, use REPLICATE instead of SPACE.

Examples

The following example trims the last names and concatenates a comma, two spaces, and the first names of people listed in the Person table in AdventureWorks2012.

USE AdventureWorks2012;
GO
SELECT RTRIM(LastName) + ',' + SPACE(2) +  LTRIM(FirstName)
FROM Person.Person
ORDER BY LastName, FirstName;
GO

Zobacz także

Odwołanie

REPLICATE (Transact-SQL)

String Functions (Transact-SQL)

Built-in Functions (Transact-SQL)