access的SQL的问题

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函数。
原文地址:https://www.cnblogs.com/Dreamfly/p/392478.html