拿到题目后,我决定从数据库来着手,写查询语句来实现,结果如下:
说明语句:
select (left(原字段,位数)+'...') as 新字段
from 表名 where datalength(原字段)>位数
union all
select 原字段 as 新字段 from 表名 where datalength(原字段)<=位数
后来考虑到access中不支持datalength()函数,所以改为len(),不过这样的话,中文字也算作一位,而不是原来的两位。
最后写成:
select top 5 * from(
select id,(left([description],25)+'...') as descriptionx,kind,datetime, description, author, hit from [xjx] where len(description)>25
union all
select id,description as descriptionx,kind,datetime, description, author, hit from [xjx] where len(description)<=25) temptable where kind='活动简报' o
新闻热点
疑难解答