比如:
  
  adoQuery1.Filter:='user_no like ''001%''';表示过滤 操作员编号 的前3位是001的纪录;  adoQuery1.Filter:='user_no like ''%001%''';表示过滤 操作员编号 包含001的纪录;
现在我想实现下面这样的功能:
 
1、表示过滤 操作员编号 最后三位001的纪录(adoQuery1.Filter:='user_no like ''%001'''这种表示方法不对);
2、表示过滤 操作员编号 中第5位到第7位为001的纪录(假如操作员编号一共为10位);不知道该如何实现?
http://bbs.2ccc.com/topic.asp?topicid=195190
http://www.delphibbs.com/delphibbs/dispq.asp?lid=3237808