3

これは、文字の長さを減らすために使用しているクエリです。

これらはいくつかの例です。

長さを最大 15 に修正するために部分文字列を指定した場合。残りの文字はこのように表示されるはずです(...)

私のSQLクエリはこれです.....

select substring('For more information about the valid SQL Server 2005 data types that can be ... Is an integer that specifies where the substring starts. start can be of type bigint.',0,15) from Admin

例: 次のように表示されます。

For more information about the valid SQL Server 2005 data.
4

5 に答える 5

2
select substring('For more information about the valid SQL Server 2005 data types that can be ... Is an integer that specifies where the substring starts. start can be of type bigint.',0,58)+'.........' 
于 2012-11-07T09:10:42.657 に答える
0
Please, not down from here :
=======================================================
  select substring('For more information about the valid SQL Server 2005 data types that
    can    be ... Is an integer that specifies where the substring starts. start can 
    be of type bigint.',0,15) 
--Not need "from Admin"
===============================================================
select substring(colname,0,15) from Admin
--"from Admin" Need when columnname is required 
于 2012-11-07T09:13:35.330 に答える
0

次のようなものを使用できます。

    select substring('For more information about the valid SQL Server 2005 data types that can be ... Is an integer that specifies where the substring starts. start can be of type bigint.',0,15)+replicate('.', 25) 
from Admin 
于 2012-11-07T09:11:05.337 に答える
0

出力を次のようにしたい場合

First_15_letters_ ... _Last_15_letters

次に、これを行う1つの方法があります

select 
substring('For more information about the valid SQL Server 2005 data types that can be ... Is an integer that specifies where the substring starts. start can be of type bigint.',0,15) 

+ '...' + 

right('For more information about the valid SQL Server 2005 data types that can be ... Is an integer that specifies where the substring starts. start can be of type bigint.',15)

from Admin;
于 2012-11-07T09:12:09.843 に答える
0

これを意味しましたか:

select Left('For more information about the valid SQL Server 2005 data', 15)+'...'

システム定義関数LEFTの第二引数に表示する文字数を指定します。

于 2012-11-07T09:07:54.813 に答える