通过odbc访问dbf,想做达到与sql中lselect * from table where len(aa)=5的效果
在sql库 中我可以这select * from table where len(aa)=5 ;
但通过odbc访问dbf 就不能这样了?
我上这样写的:
select * from tabel.dbf where len(aa) =5 //但aa 是numic类型,
我想用cast转换,但系统说:function name is missing
我应用什方法做到
select * from tabel.dbf where len(aa) =5