Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (日本語) » SQL Anywhere サーバ - SQL リファレンス » SQL の使用 » SQL 関数 » SQL 関数 (P ~ Z)

 

SPACE 関数 [文字列]

指定した数のスペースを返します。

構文
SPACE( integer-expression )
パラメータ
  • integer-expression   返すスペースの数。

戻り値

LONG VARCHAR

備考

integer-expression が負の場合は、NULL 文字列を返します。

参照
標準と互換性
  • SQL/2003   ベンダ拡張。

次の文は、10 のスペースから成る文字列を返します。

SELECT SPACE( 10 );