select [name],content=substring(content,0,20)+'...',subject from word在 sql server里面执行是没有问题的,但在access中是有问题的改成 select [name],left(content,20)+'...' as content,subject from word 试试。Access不支持SQL函数(substring),但是支持所有vba函数。 相关文章: 2022-02-27 2021-06-10 2022-12-23 2021-12-21 2022-12-23 2022-12-23